forked from mirror/OpenTTD
(svn r21863) -Fix (r21849): load the amount that should be loaded instead of the amount that should not be loaded
This commit is contained in:
@@ -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.
|
||||
|
||||
|
Reference in New Issue
Block a user