diff options
Diffstat (limited to 'src/game/server/gs_server.cpp')
| -rw-r--r-- | src/game/server/gs_server.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/server/gs_server.cpp b/src/game/server/gs_server.cpp index 5f5662d0..a4176003 100644 --- a/src/game/server/gs_server.cpp +++ b/src/game/server/gs_server.cpp @@ -724,8 +724,8 @@ void GAMECONTEXT::tick() world.core.tuning = tuning; world.tick(); - if(world.paused) // make sure that the game object always updates - controller->tick(); + //if(world.paused) // make sure that the game object always updates + controller->tick(); for(int i = 0; i < MAX_CLIENTS; i++) { @@ -737,8 +737,8 @@ void GAMECONTEXT::tick() void GAMECONTEXT::snap(int client_id) { world.snap(client_id); - events.snap(client_id); controller->snap(client_id); + events.snap(client_id); for(int i = 0; i < MAX_CLIENTS; i++) { |