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) --- station_cmd.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'station_cmd.c') diff --git a/station_cmd.c b/station_cmd.c index 74a3308c2..d10e9ef3b 100644 --- a/station_cmd.c +++ b/station_cmd.c @@ -1841,6 +1841,11 @@ static void TileLoop_Station(uint tile) // treat a bouy tile as water. else if (_map5[tile] == 0x52) TileLoop_Water(tile); + + // treat a oilrig (the station part) as water + else if (_map5[tile] == 0x4B) + TileLoop_Water(tile); + } -- cgit v1.2.3-54-g00ecf