about summary refs log tree commit diff
path: root/src/game/client/components/controls.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/components/controls.cpp')
-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 412dcf77..bdcea4d0 100644
--- a/src/game/client/components/controls.cpp
+++ b/src/game/client/components/controls.cpp
@@ -152,7 +152,7 @@ int CONTROLS::snapinput(int *data)
 		else if(input_data.prev_weapon != last_data.prev_weapon) send = true;
 
 		// send at at least 10hz
-		if(time_get() > last_send_time + time_freq()/10)
+		if(time_get() > last_send_time + time_freq()/25)
 			send = true;
 	}