From c98a1573aa2aa7ad710fe18a1eb40f7f48d4e7e7 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sat, 29 Mar 2025 13:47:39 +0700 Subject: [PATCH] ooprs!!1 --- .../mc/otm/container/slotted/AutomationFilters.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/container/slotted/AutomationFilters.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/container/slotted/AutomationFilters.kt index 39ea51c3c..b6d5e95a4 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/container/slotted/AutomationFilters.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/container/slotted/AutomationFilters.kt @@ -11,21 +11,21 @@ import ru.dbotthepony.mc.otm.core.math.Decimal enum class AutomationFilters : AutomationFilter { ONLY_OUT { override fun canAutomationPlaceItem(self: IContainerSlot, itemStack: ItemStack): Boolean { - return true + return false } override fun canAutomationTakeItem(self: IContainerSlot, desired: Int): Boolean { - return false + return true } }, ONLY_IN { override fun canAutomationPlaceItem(self: IContainerSlot, itemStack: ItemStack): Boolean { - return false + return true } override fun canAutomationTakeItem(self: IContainerSlot, desired: Int): Boolean { - return true + return false } },