mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r22645) -Fix [FS#4678]: GetSection() does not return a LockPart.
This commit is contained in:
parent
78e4abbed0
commit
2ebf8fa584
@ -50,7 +50,7 @@ static uint32 CanalGetVariable(const ResolverObject *object, byte variable, byte
|
||||
case 0x80: {
|
||||
uint z = GetTileZ(tile) / TILE_HEIGHT;
|
||||
/* Return consistent height within locks */
|
||||
if (IsTileType(tile, MP_WATER) && IsLock(tile) && GetSection(tile) == LOCK_UPPER) z--;
|
||||
if (IsTileType(tile, MP_WATER) && IsLock(tile) && GetSection(tile) >= 8) z--;
|
||||
return z;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user