Skip to content

Commit

Permalink
Fix CraftingStation exposing old nonexistant slots through ISided
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Oct 22, 2014
1 parent 35f098e commit 21c3464
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -90,7 +90,7 @@ public boolean canDropInventorySlot (int slot)
@Override
public int[] getAccessibleSlotsFromSide (int var1)
{
return new int[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 };
return new int[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
}

@Override
Expand Down

0 comments on commit 21c3464

Please sign in to comment.