Moved TE integration to preinit
This commit is contained in:
parent
223f807173
commit
11bc53eada
1 changed files with 11 additions and 12 deletions
|
@ -21,6 +21,17 @@ public class BOPCrossIntegration {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Loader.isModLoaded("ThermalExpansion"))
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
TEIntegration.init();
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
System.out.println("[BiomesOPlenty] There was an error while integrating Thermal Expansion with Biomes O' Plenty!");
|
||||||
|
e.printStackTrace(System.err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (Loader.isModLoaded("Thaumcraft"))
|
if (Loader.isModLoaded("Thaumcraft"))
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
|
@ -78,18 +89,6 @@ public class BOPCrossIntegration {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Loader.isModLoaded("ThermalExpansion"))
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
TEIntegration.init();
|
|
||||||
}
|
|
||||||
catch (Exception e) {
|
|
||||||
System.out.println("[BiomesOPlenty] There was an error while integrating Thermal Expansion with Biomes O' Plenty!");
|
|
||||||
e.printStackTrace(System.err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (Loader.isModLoaded("ATG"))
|
if (Loader.isModLoaded("ATG"))
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue