From bc002e1c934e71e117e2a37d8695d0ff06f2f5e7 Mon Sep 17 00:00:00 2001 From: Blay09 Date: Fri, 26 Aug 2016 15:31:39 +0200 Subject: [PATCH] Make CraftingTweaks integration use RegisterProviderV2 so it doesn't trigger on older versions of CraftingTweaks. --- .../refinedstorage/integration/IntegrationCraftingTweaks.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/refinedstorage/integration/IntegrationCraftingTweaks.java b/src/main/java/refinedstorage/integration/IntegrationCraftingTweaks.java index 8fe1959b0..4b17fe927 100644 --- a/src/main/java/refinedstorage/integration/IntegrationCraftingTweaks.java +++ b/src/main/java/refinedstorage/integration/IntegrationCraftingTweaks.java @@ -18,7 +18,7 @@ public class IntegrationCraftingTweaks { tagCompound.setString("ContainerCallback", ContainerCallback.class.getName()); tagCompound.setInteger("GridSlotNumber", 36); tagCompound.setString("AlignToGrid", "left"); - FMLInterModComms.sendMessage(MOD_ID, "RegisterProvider", tagCompound); + FMLInterModComms.sendMessage(MOD_ID, "RegisterProviderV2", tagCompound); } }