summaryrefslogtreecommitdiff
path: root/station_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'station_cmd.c')
-rw-r--r--station_cmd.c5
1 files changed, 5 insertions, 0 deletions
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);
+
}