From 06d48cd3da0c6dc4d030a3b3f15a33e66b3676e2 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Mon, 20 Oct 2008 19:58:11 +0000 Subject: improved some the dummies a bit --- src/game/server/hooks.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/game/server/hooks.cpp') 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) -- cgit 1.4.1