From f581d52355ab5a62082a15663e5893d212f7553e Mon Sep 17 00:00:00 2001 From: Reece Date: Thu, 29 Jun 2017 17:42:36 +0100 Subject: [PATCH] Disable money effect in pause mode --- src/openrct2/game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/game.c b/src/openrct2/game.c index 66f0835ac5..5e1ff8993a 100644 --- a/src/openrct2/game.c +++ b/src/openrct2/game.c @@ -599,7 +599,7 @@ sint32 game_do_command_p(sint32 command, sint32 *eax, sint32 *ebx, sint32 *ecx, finance_payment(cost, gCommandExpenditureType); if (gUnk141F568 == gUnk13CA740) { // Create a +/- money text effect - if (cost != 0) + if (cost != 0 && game_is_not_paused()) money_effect_create(cost); } }