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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user