(svn r20534) -Codechange: unify the naming of the 'vehicle must be stopped in depot' strings

This commit is contained in:
yexo
2010-08-18 00:30:12 +00:00
parent 9b8d7048da
commit eeca1846d6
57 changed files with 156 additions and 156 deletions

View File

@@ -405,7 +405,7 @@ CommandCost CmdRefitAircraft(TileIndex tile, DoCommandFlag flags, uint32 p1, uin
CommandCost ret = CheckOwnership(v->owner);
if (ret.Failed()) return ret;
if (!v->IsStoppedInDepot()) return_cmd_error(STR_ERROR_AIRCRAFT_MUST_BE_STOPPED);
if (!v->IsStoppedInDepot()) return_cmd_error(STR_ERROR_AIRCRAFT_MUST_BE_STOPPED_INSIDE_HANGAR);
if (v->vehstatus & VS_CRASHED) return_cmd_error(STR_ERROR_VEHICLE_IS_DESTROYED);
/* Check cargo */