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

pull/155/head
rubidium 14 years ago
parent 8db501e115
commit 3cea46161d

@ -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