diff --git a/src/me/ryanhamshire/AutomaticInventory/AIEventHandler.java b/src/me/ryanhamshire/AutomaticInventory/AIEventHandler.java index 5619a5f..53b629e 100644 --- a/src/me/ryanhamshire/AutomaticInventory/AIEventHandler.java +++ b/src/me/ryanhamshire/AutomaticInventory/AIEventHandler.java @@ -405,7 +405,8 @@ static boolean isSortableChestInventory(Inventory inventory, String name) InventoryType inventoryType = inventory.getType(); if(inventoryType != InventoryType.CHEST && inventoryType != InventoryType.ENDER_CHEST - && inventoryType != InventoryType.SHULKER_BOX) return false; + && inventoryType != InventoryType.SHULKER_BOX + && inventoryType != InventoryType.BARREL) return false; if(name != null && name.contains("*")) return false;