Fixes #1076 Crash on shift clicking a recipe from NEI
This commit is contained in:
@@ -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 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user