Fix crash when unblocking slot in alchemy table

why way why

`boolean[] blocked = new boolean[slotCount]` :I
This commit is contained in:
Nicholas Ignoffo 2017-02-12 01:59:30 -08:00
parent ac5cf52151
commit 2db775346c

View file

@ -76,7 +76,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory,
{ {
if (blockedSlots.contains(slot)) if (blockedSlots.contains(slot))
{ {
blockedSlots.remove(slot); blockedSlots.remove((Object) slot);
} else } else
{ {
blockedSlots.add(slot); blockedSlots.add(slot);