From 956882960e9710ad69691ee5ea28ae64e08061c3 Mon Sep 17 00:00:00 2001 From: bspkrs Date: Thu, 22 May 2014 19:16:14 -0400 Subject: [PATCH] Send IMC message to new mod ID I changed the Treecapitator mod ID to use the correct capitalization. I left the old line for backwards compatibility. --- .../common/integration/TreecapitatorIntegration.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/biomesoplenty/common/integration/TreecapitatorIntegration.java b/src/main/java/biomesoplenty/common/integration/TreecapitatorIntegration.java index e3cc22b12..fad742336 100644 --- a/src/main/java/biomesoplenty/common/integration/TreecapitatorIntegration.java +++ b/src/main/java/biomesoplenty/common/integration/TreecapitatorIntegration.java @@ -189,6 +189,8 @@ public class TreecapitatorIntegration tpModCfg.setTag("trees", treeList); + // bspkrs: I changed the mod ID, so just send messages to both for now. FMLInterModComms.sendMessage("TreeCapitator", "ThirdPartyModConfig", tpModCfg); + FMLInterModComms.sendMessage("Treecapitator", "ThirdPartyModConfig", tpModCfg); } -} \ No newline at end of file +}