Merge pull request #1083 from thatsIch/b-1076-nei-crash

Fixes #1076 Crash on shift clicking a recipe from NEI
This commit is contained in:
thatsIch 2015-03-24 16:54:08 +01:00
commit 9d52e85afa

View file

@ -202,7 +202,7 @@ public class PacketNEIRecipe extends AppEngPacket
{
// check if the item in slot y matches the required item.
playerItemStack = playerInventory.getStackInSlot( i );
if ( playerItemStack != null && playerItemStack.getItem() == this.recipe[x][y].getItem() )
if ( playerItemStack != null && this.recipe[x][y] != null && playerItemStack.getItem() == this.recipe[x][y].getItem() )
{
if ( realForFake == Actionable.SIMULATE )
{