Fix improper logic in ItemHandlerHelper.giveItemToPlayer causing some items to not be added. Closes #2705
This commit is contained in:
parent
9f1505dd53
commit
ce4bb8fe93
1 changed files with 2 additions and 2 deletions
|
@ -142,7 +142,7 @@ public class ItemHandlerHelper
|
||||||
World world = player.worldObj;
|
World world = player.worldObj;
|
||||||
|
|
||||||
// try adding it into the inventory
|
// try adding it into the inventory
|
||||||
ItemStack remainder = null;
|
ItemStack remainder = stack;
|
||||||
// insert into preferred slot first
|
// insert into preferred slot first
|
||||||
if(preferredSlot >= 0)
|
if(preferredSlot >= 0)
|
||||||
{
|
{
|
||||||
|
@ -151,7 +151,7 @@ public class ItemHandlerHelper
|
||||||
// then into the inventory in general
|
// then into the inventory in general
|
||||||
if(remainder != null)
|
if(remainder != null)
|
||||||
{
|
{
|
||||||
remainder = insertItemStacked(inventory, stack, false);
|
remainder = insertItemStacked(inventory, remainder, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// play sound if something got picked up
|
// play sound if something got picked up
|
||||||
|
|
Loading…
Reference in a new issue