about summary refs log tree commit diff
path: root/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'src/game')
-rw-r--r--src/game/client/components/controls.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/components/controls.cpp b/src/game/client/components/controls.cpp
index 12eabdd0..63a081eb 100644
--- a/src/game/client/components/controls.cpp
+++ b/src/game/client/components/controls.cpp
@@ -142,7 +142,7 @@ int CONTROLS::snapinput(int *data)
 	else if(input_data.next_weapon != last_data.next_weapon) send = true;
 	else if(input_data.prev_weapon != last_data.prev_weapon) send = true;
 
-	if(time_get() > last_send_time + time_freq()/5)
+	if(time_get() > last_send_time + time_freq()/10)
 		send = true;
 
 	last_data = input_data;