(svn r10971) -Codechange: One less magical number

This commit is contained in:
belugas 2007-08-24 00:04:51 +00:00
parent a079834cfc
commit 604924542c
1 changed files with 1 additions and 1 deletions

View File

@ -1334,7 +1334,7 @@ static void BubbleTick(Vehicle *v)
SndPlayVehicleFx(SND_31_EXTRACT, v);
tile = TileVirtXY(v->x_pos, v->y_pos);
if (IsTileType(tile, MP_INDUSTRY) && GetIndustryGfx(tile) == 0xA2) AddAnimatedTile(tile);
if (IsTileType(tile, MP_INDUSTRY) && GetIndustryGfx(tile) == GFX_BUBBLE_CATCHER) AddAnimatedTile(tile);
}
v->engine_type = et;