(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

@@ -174,7 +174,7 @@ CommandCost CmdSellVehicle(TileIndex tile, DoCommandFlag flags, uint32 p1, uint3
if (front->vehstatus & VS_CRASHED) return_cmd_error(STR_ERROR_VEHICLE_IS_DESTROYED);
if (!front->IsStoppedInDepot()) return_cmd_error(STR_TRAIN_MUST_BE_STOPPED + front->type);
if (!front->IsStoppedInDepot()) return_cmd_error(STR_ERROR_TRAIN_MUST_BE_STOPPED_INSIDE_DEPOT + front->type);
if (v->type == VEH_TRAIN) {
ret = CmdSellRailWagon(flags, v, GB(p1, 16, 16));