From 7af3360c5aa6c5b9cfdad97351bcc7644b4ab5c1 Mon Sep 17 00:00:00 2001 From: dominik Date: Fri, 13 Aug 2004 19:52:45 +0000 Subject: (svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel) --- industry_cmd.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'industry_cmd.c') diff --git a/industry_cmd.c b/industry_cmd.c index 17fa7bcd2..48560cfba 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -725,6 +725,14 @@ static void TileLoop_Industry(uint tile) #define SET_AND_UNANIMATE(tile,a,b) { _map5[tile]=a; _map_owner[tile]=b; DeleteAnimatedTile(tile); } switch(_map5[tile]) { + case 0x18: // coast line at oilrigs + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + TileLoop_Water(tile); + break; + case 0: if (!(_tick_counter & 0x400) && CHANCE16(1,2)) SET_AND_ANIMATE(tile,1,0x80); -- cgit v1.2.3-54-g00ecf