diff --git a/src/me/ryanhamshire/AutomaticInventory/AIEventHandler.java b/src/me/ryanhamshire/AutomaticInventory/AIEventHandler.java index 46a02a2..9f83f67 100644 --- a/src/me/ryanhamshire/AutomaticInventory/AIEventHandler.java +++ b/src/me/ryanhamshire/AutomaticInventory/AIEventHandler.java @@ -402,7 +402,8 @@ static boolean isSortableChestInventory(Inventory inventory, String name) return holder instanceof Chest || holder instanceof ShulkerBox || holder instanceof DoubleChest - || holder instanceof StorageMinecart; + || holder instanceof StorageMinecart + || holder instanceof Barrel; } @EventHandler(ignoreCancelled = true, priority = EventPriority.MONITOR)