diff --git a/src/vehicle_cmd.cpp b/src/vehicle_cmd.cpp index 37be3a97ed..7279e969c1 100644 --- a/src/vehicle_cmd.cpp +++ b/src/vehicle_cmd.cpp @@ -722,7 +722,7 @@ CommandCost CmdMassStartStopVehicle(TileIndex tile, DoCommandFlag flags, uint32 if (vehicle_list_window) { if (!GenerateVehicleSortList(&list, vli, GB(p1, 8, 8))) return CMD_ERROR; } else { - if (!IsDepotTile(tile) || !IsTileOwner(tile, _current_company)) return CMD_ERROR; + if (!IsDepotTile(tile)) return CMD_ERROR; /* Get the list of vehicles in the depot */ BuildDepotVehicleList(vli.vtype, tile, &list, nullptr); }