src/water_map.h
branchnoai
changeset 10249 58810805030e
parent 9732 f8eb3e208514
child 10455 22c441f5adf9
--- a/src/water_map.h	Thu Apr 17 08:40:01 2008 +0000
+++ b/src/water_map.h	Fri Apr 18 23:33:51 2008 +0000
@@ -91,11 +91,16 @@
 	return t + (HasBit(_m[t].m5, 0) ? -1 : 1) * (HasBit(_m[t].m5, 1) ? TileDiffXY(0, 1) : TileDiffXY(1, 0));
 }
 
-static inline TileIndex IsShipDepot(TileIndex t)
+static inline bool IsShipDepot(TileIndex t)
 {
 	return IsInsideMM(_m[t].m5, DEPOT_NORTH, DEPOT_END);
 }
 
+static inline bool IsShipDepotTile(TileIndex t)
+{
+	return IsTileType(t, MP_WATER) && IsShipDepot(t);
+}
+
 static inline Axis GetShipDepotAxis(TileIndex t)
 {
 	return (Axis)GB(_m[t].m5, 1, 1);