mirror of https://github.com/OpenTTD/OpenTTD
(svn r21863) -Fix (r21849): load the amount that should be loaded instead of the amount that should not be loaded
parent
d426906a01
commit
6435a89c28
|
@ -313,7 +313,7 @@ bool CargoList<Tinst>::MoveTo(Tother_inst *dest, uint max_move, MoveToAction mta
|
|||
cp->count = left;
|
||||
} else {
|
||||
/* But... the rest needs package splitting. */
|
||||
CargoPacket *cp_new = cp->Split(cp->count - max_move);
|
||||
CargoPacket *cp_new = cp->Split(max_move);
|
||||
|
||||
static_cast<Tinst *>(this)->RemoveFromCache(cp_new); // this reflects the changes in cp.
|
||||
|
||||
|
|
Loading…
Reference in New Issue