mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
Fix #6138: 'Too low' error when placing at lowest Z
This commit is contained in:
parent
38e6b174bd
commit
1a64fde0af
1 changed files with 1 additions and 1 deletions
|
@ -3893,7 +3893,7 @@ void ride_construction_tooldown_construct(sint32 screenX, sint32 screenY)
|
|||
z -= bx;
|
||||
|
||||
// FIX not sure exactly why it starts trial and error place from a lower Z, but it causes issues with disable clearance
|
||||
if (!gCheatsDisableClearanceChecks) {
|
||||
if (!gCheatsDisableClearanceChecks && z > 16) {
|
||||
z -= 16;
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue