Revert "Inventory: Make addItem for empty ItemStacks respect max stack size" (#8519)

Revert commit e6a9e60
This commit is contained in:
ANAND ︻气デ═一 2019-05-12 22:37:15 +05:30 committed by Paramat
parent 06a749c386
commit 568694122c
1 changed files with 3 additions and 18 deletions

View File

@ -257,17 +257,8 @@ ItemStack ItemStack::addItem(ItemStack newitem, IItemDefManager *itemdef)
// If this is an empty item, it's an easy job.
else if(empty())
{
const u16 stackMax = newitem.getStackMax(itemdef);
*this = newitem;
// If the item fits fully, delete it
if (count <= stackMax) {
newitem.clear();
} else { // Else the item does not fit fully. Return the rest.
count = stackMax;
newitem.remove(count);
}
newitem.clear();
}
// If item name or metadata differs, bail out
else if (name != newitem.name
@ -306,14 +297,7 @@ bool ItemStack::itemFits(ItemStack newitem,
// If this is an empty item, it's an easy job.
else if(empty())
{
const u16 stackMax = newitem.getStackMax(itemdef);
// If the item fits fully, delete it
if (newitem.count <= stackMax) {
newitem.clear();
} else { // Else the item does not fit fully. Return the rest.
newitem.remove(stackMax);
}
newitem.clear();
}
// If item name or metadata differs, bail out
else if (name != newitem.name
@ -335,6 +319,7 @@ bool ItemStack::itemFits(ItemStack newitem,
if(restitem)
*restitem = newitem;
return newitem.empty();
}