TBTR: No longer use idle vehicles in depots by default

This commit is contained in:
Jonathan G Rennison
2021-01-10 18:20:10 +00:00
parent 515aeb04e0
commit dd16145b03
3 changed files with 6 additions and 5 deletions

View File

@@ -68,8 +68,10 @@ TemplateVehicle::TemplateVehicle(VehicleType ty, EngineID eid, byte subtypeflag,
this->type = ty;
this->engine_type = eid;
this->reuse_depot_vehicles = true;
this->keep_remaining_vehicles = true;
this->reuse_depot_vehicles = false;
this->keep_remaining_vehicles = false;
this->refit_as_template = true;
this->replace_old_only = false;
this->first = this;
this->next = 0x0;