Fixes #1076 Crash on shift clicking a recipe from NEI
This commit is contained in:
parent
a4c38263d1
commit
3745e6ce8d
1 changed files with 1 additions and 1 deletions
|
@ -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 )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue