Fix crash when unblocking slot in alchemy table
why way why `boolean[] blocked = new boolean[slotCount]` :I
This commit is contained in:
parent
ac5cf52151
commit
2db775346c
|
@ -76,7 +76,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory,
|
|||
{
|
||||
if (blockedSlots.contains(slot))
|
||||
{
|
||||
blockedSlots.remove(slot);
|
||||
blockedSlots.remove((Object) slot);
|
||||
} else
|
||||
{
|
||||
blockedSlots.add(slot);
|
||||
|
|
Loading…
Reference in a new issue