From efa02751044f351ec9934963aea959fd265bca52 Mon Sep 17 00:00:00 2001 From: ZehM4tt Date: Thu, 22 Jun 2017 21:03:23 +0200 Subject: [PATCH] Fix client not resuming when server toggles pause. --- src/openrct2/game.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/openrct2/game.c b/src/openrct2/game.c index 6df67285e5..f42f4a0897 100644 --- a/src/openrct2/game.c +++ b/src/openrct2/game.c @@ -311,6 +311,8 @@ void game_update() // Special case because we set numUpdates to 0, otherwise in game_logic_update. network_update(); + + network_process_game_commands(); } if (!gOpenRCT2Headless)