1
0
Fork 0

(svn r14694) -Fix (r1): zeppeliner (disaster) should target st->airport_tile, not st->xy

release/0.7
smatz 2008-12-19 21:12:16 +00:00
parent a7f82bd11a
commit f52d1bd0ba
1 changed files with 1 additions and 1 deletions

View File

@ -774,7 +774,7 @@ static void Disaster_Zeppeliner_Init()
if (st->airport_tile != 0 &&
st->airport_type <= 1 &&
IsHumanCompany(st->owner)) {
x = (TileX(st->xy) + 2) * TILE_SIZE;
x = (TileX(st->airport_tile) + 2) * TILE_SIZE;
break;
}
}