Codechange: remove parameter from VehicleCargoList::Reassign that is always INVALID_STATION

This commit is contained in:
Patric Stout
2023-09-10 22:34:02 +02:00
committed by Patric Stout
parent 6643c010bd
commit a0f6983be4
3 changed files with 6 additions and 7 deletions

View File

@@ -403,7 +403,7 @@ public:
* applicable), return value is amount of cargo actually moved. */
template<MoveToAction Tfrom, MoveToAction Tto>
uint Reassign(uint max_move, StationID update = INVALID_STATION);
uint Reassign(uint max_move);
uint Return(uint max_move, StationCargoList *dest, StationID next_station);
uint Unload(uint max_move, StationCargoList *dest, CargoPayment *payment);
uint Shift(uint max_move, VehicleCargoList *dest);