summaryrefslogtreecommitdiff
path: root/src/ship_cmd.cpp
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2010-06-11 20:20:45 +0000
committerterkhen <terkhen@openttd.org>2010-06-11 20:20:45 +0000
commit54403a8251f3de21bb92c81d8f02b1c35cd67fa2 (patch)
treea92b659ffc2cf82fd08b57cd8c1a1d166c8cc9ad /src/ship_cmd.cpp
parenta3cd86ac808c1901c2c993d5b11e20d7bd1b8a98 (diff)
downloadopenttd-54403a8251f3de21bb92c81d8f02b1c35cd67fa2.tar.xz
(svn r19961) -Codechange: Unify "vehicle is destroyed" errors.
Diffstat (limited to 'src/ship_cmd.cpp')
-rw-r--r--src/ship_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ship_cmd.cpp b/src/ship_cmd.cpp
index 8e12a9f6e..625c0cdd4 100644
--- a/src/ship_cmd.cpp
+++ b/src/ship_cmd.cpp
@@ -715,7 +715,7 @@ CommandCost CmdSellShip(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p
CommandCost ret = CheckOwnership(v->owner);
if (ret.Failed()) return ret;
- if (v->vehstatus & VS_CRASHED) return_cmd_error(STR_ERROR_CAN_T_SELL_DESTROYED_VEHICLE);
+ if (v->vehstatus & VS_CRASHED) return_cmd_error(STR_ERROR_VEHICLE_IS_DESTROYED);
if (!v->IsStoppedInDepot()) {
return_cmd_error(STR_ERROR_SHIP_MUST_BE_STOPPED_IN_DEPOT);
@@ -790,7 +790,7 @@ CommandCost CmdRefitShip(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32
if (ret.Failed()) return ret;
if (!v->IsStoppedInDepot()) return_cmd_error(STR_ERROR_SHIP_MUST_BE_STOPPED_IN_DEPOT);
- if (v->vehstatus & VS_CRASHED) return_cmd_error(STR_ERROR_CAN_T_REFIT_DESTROYED_VEHICLE);
+ if (v->vehstatus & VS_CRASHED) return_cmd_error(STR_ERROR_VEHICLE_IS_DESTROYED);
/* Check cargo */
if (new_cid >= NUM_CARGO) return CMD_ERROR;