1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 03:23:15 +01:00

Limit tile inspector coord update to valid actions only

This commit is contained in:
Michał Janiszewski
2017-02-15 21:37:29 +01:00
parent b874626602
commit 663e45f24d

View File

@@ -5789,7 +5789,10 @@ void game_command_modify_tile(sint32* eax, sint32* ebx, sint32* ecx, sint32* edx
break;
}
if (flags & GAME_COMMAND_FLAG_APPLY && gGameCommandNestLevel == 1 && !(flags & GAME_COMMAND_FLAG_GHOST))
if (flags & GAME_COMMAND_FLAG_APPLY &&
gGameCommandNestLevel == 1 &&
!(flags & GAME_COMMAND_FLAG_GHOST) &&
*ebx != MONEY32_UNDEFINED)
{
rct_xyz16 coord;
coord.x = (x << 5) + 16;