From a590fd8ee1e44b117237eb4f2d8b3cbfb1fc26e1 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Sun, 8 Oct 2017 18:56:07 +0100 Subject: [PATCH] Should fix #1289 --- src/main/java/techreborn/items/ItemCells.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/java/techreborn/items/ItemCells.java b/src/main/java/techreborn/items/ItemCells.java index 271dfc17d..a333ba4e5 100644 --- a/src/main/java/techreborn/items/ItemCells.java +++ b/src/main/java/techreborn/items/ItemCells.java @@ -52,6 +52,15 @@ public class ItemCells { } public static boolean isCellEqual(ItemStack stack1, ItemStack stack2){ + if(stack1 == null || stack2 == null){ + return false; + } + if(stack1.isEmpty() || stack2.isEmpty()){ + return false; + } + if(stack1.getTagCompound() == null || stack2.getTagCompound() == null){ + return false; + } return stack1.getTagCompound().equals(stack2.getTagCompound()); }