(svn r21863) -Fix (r21849): load the amount that should be loaded instead of the amount that should not be loaded

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
rubidium 14 years ago
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…
Cancel
Save