forked from mirror/OpenTTD
(svn r3487) -Fix: Price for demolishing a bridge was dependent on orientation and map size
This commit is contained in:
@@ -830,7 +830,11 @@ clear_it:;
|
||||
|
||||
}
|
||||
|
||||
return ((((endtile - tile) >> (direction?8:0))&0xFF)+1) * _price.clear_bridge;
|
||||
if (direction) {
|
||||
return (TileY(endtile) - TileY(tile) + 1) * _price.clear_bridge;
|
||||
} else {
|
||||
return (TileX(endtile) - TileX(tile) + 1) * _price.clear_bridge;
|
||||
}
|
||||
}
|
||||
|
||||
static int32 ClearTile_TunnelBridge(TileIndex tile, byte flags)
|
||||
|
Reference in New Issue
Block a user