From 0dc2a1eb556a481c5bf493738f56bbe508912ac0 Mon Sep 17 00:00:00 2001 From: bluefireoly Date: Fri, 2 Oct 2020 19:16:42 +0200 Subject: [PATCH] Update InventoryType.kt --- .../net/axay/kspigot/inventory/InventoryType.kt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/kotlin/net/axay/kspigot/inventory/InventoryType.kt b/src/main/kotlin/net/axay/kspigot/inventory/InventoryType.kt index 57c9dfba..210a25fe 100644 --- a/src/main/kotlin/net/axay/kspigot/inventory/InventoryType.kt +++ b/src/main/kotlin/net/axay/kspigot/inventory/InventoryType.kt @@ -41,14 +41,14 @@ class InventoryType( interface ForInventory -interface ForInventoryThreeByThree : ForInventory -interface ForInventoryOneByFive : ForInventory -interface ForInventoryOneByNine : ForInventoryOneByFive -interface ForInventoryTwoByNine : ForInventoryOneByNine -interface ForInventoryThreeByNine : ForInventoryTwoByNine, ForInventoryThreeByThree -interface ForInventoryFourByNine : ForInventoryThreeByNine -interface ForInventoryFiveByNine : ForInventoryFourByNine -interface ForInventorySixByNine : ForInventoryFiveByNine +interface ForInventoryThreeByThree : ForInventoryThreeByNine +interface ForInventoryOneByFive : ForInventoryOneByNine +interface ForInventoryOneByNine : ForInventoryTwoByNine +interface ForInventoryTwoByNine : ForInventoryThreeByNine +interface ForInventoryThreeByNine : ForInventoryFourByNine +interface ForInventoryFourByNine : ForInventoryFiveByNine +interface ForInventoryFiveByNine : ForInventorySixByNine +interface ForInventorySixByNine : ForInventory interface ForEveryInventory : ForInventoryOneByNine, ForInventoryTwoByNine, ForInventoryThreeByNine,