1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 23:04:36 +01:00

Fix support cost multiplier underground.

Fixes #1651
This commit is contained in:
Duncan Frost
2015-07-20 17:21:32 +01:00
parent bc61e39610
commit 82217d0053

View File

@@ -4133,7 +4133,7 @@ money32 track_remove(uint8 type, uint8 sequence, sint16 originX, sint16 originY,
return MONEY32_UNDEFINED;
}
uint8 support_height = mapElement->base_height - surfaceElement->base_height;
sint8 support_height = mapElement->base_height - surfaceElement->base_height;
if (support_height < 0){
support_height = 10;
}