From 3ef0d981b39767cd7def6ecd832cb2486bb9a0cd Mon Sep 17 00:00:00 2001 From: Justin Aquadro Date: Sun, 14 Jan 2018 22:54:27 -0500 Subject: [PATCH] errant null --- .../storagedrawers/inventory/ContainerFramingTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jaquadro/minecraft/storagedrawers/inventory/ContainerFramingTable.java b/src/com/jaquadro/minecraft/storagedrawers/inventory/ContainerFramingTable.java index be64b835b..303519f2d 100644 --- a/src/com/jaquadro/minecraft/storagedrawers/inventory/ContainerFramingTable.java +++ b/src/com/jaquadro/minecraft/storagedrawers/inventory/ContainerFramingTable.java @@ -104,7 +104,7 @@ else if (block instanceof BlockTrimCustom) { @Override @Nonnull public ItemStack transferStackInSlot (EntityPlayer player, int slotIndex) { - ItemStack itemStack = null; + ItemStack itemStack = ItemStack.EMPTY; Slot slot = inventorySlots.get(slotIndex); // Assume inventory and hotbar slot IDs are contiguous