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 } },