ship_gui.c
changeset 1330 8a67d04016ce
parent 1323 41397685320a
child 1485 a2f36708c260
--- a/ship_gui.c	Sun Feb 06 22:25:27 2005 +0000
+++ b/ship_gui.c	Sun Feb 06 22:36:08 2005 +0000
@@ -491,7 +491,7 @@
 		if (ShipVehInfo(v->engine_type)->refittable &&
 				v->vehstatus&VS_STOPPED &&
 				v->u.ship.state == 0x80 &&
-				IsShipDepotTile(v->tile))
+				IsTileDepotType(v->tile, TRANSPORT_WATER))
 			disabled = 0;
 
 		if (v->owner != _local_player)
@@ -979,7 +979,7 @@
 			DrawVehicleProfitButton(v, x, y + 13);
 
 			SetDParam(0, v->unitnumber);
-			if (IsShipDepotTile(v->tile) && (v->vehstatus & VS_HIDDEN))
+			if (IsTileDepotType(v->tile, TRANSPORT_WATER) && (v->vehstatus & VS_HIDDEN))
 				str = STR_021F;
 			else
 				str = v->age > v->max_age - 366 ? STR_00E3 : STR_00E2;
@@ -1040,7 +1040,7 @@
 
 			tile = _last_built_ship_depot_tile;
 			do {
-				if (_map_owner[tile] == _local_player && IsShipDepotTile(tile)) {
+				if (_map_owner[tile] == _local_player && IsTileDepotType(tile, TRANSPORT_WATER)) {
 					ShowShipDepotWindow(tile);
 					ShowBuildShipWindow(tile);
 					return;