1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Disable money effect in pause mode

This commit is contained in:
Reece
2017-06-29 17:42:36 +01:00
committed by Michael Steenbeek
parent 9148b98928
commit f581d52355

View File

@@ -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);
}
}