Blacklist Time Torch
Talking to Reika about the ChromatiCraft one
This commit is contained in:
parent
ee44f2a979
commit
365f658837
|
@ -771,6 +771,8 @@ public class AlchemicalWizardry
|
|||
|
||||
this.blacklistDemons();
|
||||
|
||||
this.blacklistAccelerators();
|
||||
|
||||
MinecraftForge.EVENT_BUS.register(new ModLivingDropsEvent());
|
||||
proxy.InitRendering();
|
||||
NetworkRegistry.INSTANCE.registerGuiHandler(this, new GuiHandler());
|
||||
|
@ -1150,6 +1152,15 @@ public class AlchemicalWizardry
|
|||
// this.createItemTextureFiles();
|
||||
}
|
||||
|
||||
public static void blacklistAccelerators()
|
||||
{
|
||||
if (Loader.isModLoaded("Torcherino"))
|
||||
{
|
||||
FMLInterModComms.sendMessage("Torcherino", "blacklist-tile", TEAltar.class.getName());
|
||||
FMLInterModComms.sendMessage("Torcherino", "blacklist-tile", TEMasterStone.class.getName());
|
||||
}
|
||||
}
|
||||
|
||||
public static void blacklistDemons()
|
||||
{
|
||||
String[] mobs = new String[]{"FallenAngel","LowerGuardian","BileDemon","WingedFireDemon","SmallEarthGolem","IceDemon","BoulderFist","Shade","AirElemental",
|
||||
|
|
Loading…
Reference in a new issue