diff --git a/src/main/java/com/refinedmods/refinedstorage/integration/inventorysorter/InventorySorterIntegration.java b/src/main/java/com/refinedmods/refinedstorage/integration/inventorysorter/InventorySorterIntegration.java index 06b571886..d67623457 100644 --- a/src/main/java/com/refinedmods/refinedstorage/integration/inventorysorter/InventorySorterIntegration.java +++ b/src/main/java/com/refinedmods/refinedstorage/integration/inventorysorter/InventorySorterIntegration.java @@ -1,6 +1,9 @@ package com.refinedmods.refinedstorage.integration.inventorysorter; +import com.refinedmods.refinedstorage.RS; +import net.minecraft.resources.ResourceLocation; import net.minecraftforge.fml.ModList; +import net.minecraftforge.fml.InterModComms; public class InventorySorterIntegration { private static final String ID = "inventorysorter"; @@ -14,6 +17,7 @@ public class InventorySorterIntegration { public static void register() { // Prevent items moving while scrolling through slots with Inventory Sorter in the Crafter Manager - // InterModComms.sendTo("inventorysorter", "slotblacklist", () -> "com.refinedmods.refinedstorage.container.slot.CrafterManagerSlot"); + InterModComms.sendTo("inventorysorter", "slotblacklist", () -> "com.refinedmods.refinedstorage.container.slot.CrafterManagerSlot"); + InterModComms.sendTo("inventorysorter", "containerblacklist", () -> new ResourceLocation(RS.ID, "crafter")); } }