about summary refs log tree commit diff
path: root/src/game/server
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/server')
-rw-r--r--src/game/server/hooks.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/game/server/hooks.cpp b/src/game/server/hooks.cpp
index 9a25d338..b4e5f1f4 100644
--- a/src/game/server/hooks.cpp
+++ b/src/game/server/hooks.cpp
@@ -60,6 +60,16 @@ void mods_client_predicted_input(int client_id, void *input)
 void mods_tick()
 {
 	game.tick();
+
+	if(config.dbg_dummies)
+	{
+		for(int i = 0; i < config.dbg_dummies ; i++)
+		{
+			NETOBJ_PLAYER_INPUT input = {0};
+			input.direction = (i&1)?-1:1;
+			game.players[MAX_CLIENTS-i-1]->on_predicted_input(&input);
+		}
+	}
 }
 
 void mods_snap(int client_id)