1
0
Fork 0

(svn r22645) -Fix [FS#4678]: GetSection() does not return a LockPart.

release/1.2
frosch 2011-07-10 13:00:05 +00:00
parent 570da01d3a
commit d4dbe95274
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}