From 56a5a97b507e5aa0225288944bf587f36fd34c98 Mon Sep 17 00:00:00 2001 From: Alkalus Date: Mon, 6 Nov 2017 08:23:17 +1000 Subject: % Redid every Mekanism recipe that required Osmium. --- src/Java/gtPlusPlus/preloader/Preloader_GT_OreDict.java | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/Java/gtPlusPlus/preloader') diff --git a/src/Java/gtPlusPlus/preloader/Preloader_GT_OreDict.java b/src/Java/gtPlusPlus/preloader/Preloader_GT_OreDict.java index 9b3b7092da..26cefe7254 100644 --- a/src/Java/gtPlusPlus/preloader/Preloader_GT_OreDict.java +++ b/src/Java/gtPlusPlus/preloader/Preloader_GT_OreDict.java @@ -101,6 +101,16 @@ public class Preloader_GT_OreDict { } } } + //Shard + if (Class.forName("mekanism.common.item.ItemShard") != null) { + Class MekIngot = Class.forName("mekanism.common.item.ItemShard"); + if (isInstanceOf(MekIngot, bannedItem.getItem())) { + if (bannedItem.getItemDamage() == 2){ + FMLRelaunchLog.log("[GT++ ASM] OreDictTransformer", Level.INFO, "Removing "+bannedItem.getDisplayName()+" from the OreDictionary to balance Mekanism."); + return true; + } + } + } //Clump if (Class.forName("mekanism.common.item.ItemClump") != null) { Class MekIngot = Class.forName("mekanism.common.item.ItemClump"); -- cgit