Fix moving stuff into a mismatched stack in a "infinite" inventory

This commit is contained in:
Perttu Ahola 2012-09-02 23:01:40 +03:00
parent e1a495ee30
commit cc47ff7c4c
1 changed files with 2 additions and 0 deletions

View File

@ -351,6 +351,8 @@ void IMoveAction::apply(InventoryManager *mgr, ServerActiveObject *player, IGame
if(dst_can_put_count == -1){
list_to->deleteItem(to_i);
list_to->addItem(to_i, to_stack_was);
list_from->deleteItem(from_i);
list_from->addItem(from_i, from_stack_was);
list_from->takeItem(from_i, count);
}