mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r23155) -Change: [NewGRF v8] Use heightlevel units in var 8A of callback 28.
This commit is contained in:
parent
8f4c6d42f9
commit
dd3e6d3e44
@ -488,7 +488,7 @@ uint32 IndustryLocationGetVariable(const ResolverObject *object, byte variable,
|
|||||||
case 0x89: return min(DistanceManhattan(industry->town->xy, tile), 255);
|
case 0x89: return min(DistanceManhattan(industry->town->xy, tile), 255);
|
||||||
|
|
||||||
/* Lowest height of the tile */
|
/* Lowest height of the tile */
|
||||||
case 0x8A: return GetTilePixelZ(tile);
|
case 0x8A: return Clamp(GetTileZ(tile) * (object->grffile->grf_version >= 8 ? 1 : TILE_HEIGHT), 0, 0xFF);
|
||||||
|
|
||||||
/* Distance to the nearest water/land tile */
|
/* Distance to the nearest water/land tile */
|
||||||
case 0x8B: return GetClosestWaterDistance(tile, (GetIndustrySpec(industry->type)->behaviour & INDUSTRYBEH_BUILT_ONWATER) == 0);
|
case 0x8B: return GetClosestWaterDistance(tile, (GetIndustrySpec(industry->type)->behaviour & INDUSTRYBEH_BUILT_ONWATER) == 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user