diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-07-30 11:54:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 11:54:50 +0200 |
commit | 0f7a5c79f0941195d078b1877cd876b1d73b2b33 (patch) | |
tree | 7029c33c0ffb93a1b911ae3395af424ceb7e7743 /src/main/java/gregtech/GT_Mod.java | |
parent | 2bff27eca61fd5d19f64969f67442c3a55175d3e (diff) | |
parent | ea5c515f4769fa83f4eb6268f0b8048f76fbb0ac (diff) | |
download | GT5-Unofficial-0f7a5c79f0941195d078b1877cd876b1d73b2b33.tar.gz GT5-Unofficial-0f7a5c79f0941195d078b1877cd876b1d73b2b33.tar.bz2 GT5-Unofficial-0f7a5c79f0941195d078b1877cd876b1d73b2b33.zip |
Merge pull request #551 from GTNewHorizons/structurelib-integration
StructureLib integration
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
-rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index c601130ab9..590f01292e 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -1,6 +1,7 @@ package gregtech; import com.google.common.base.Stopwatch; +import com.gtnewhorizon.structurelib.StructureLib; import cpw.mods.fml.common.*; import cpw.mods.fml.common.event.*; import cpw.mods.fml.common.registry.EntityRegistry; @@ -74,6 +75,7 @@ import static gregtech.api.enums.GT_Values.MOD_ID_FR; @SuppressWarnings("ALL") @Mod(modid = "gregtech", name = "GregTech", version = "MC1710", useMetadata = false, dependencies = " required-after:IC2;" + + " required-after:" + StructureLib.MOD_ID + ";" + " after:dreamcraft;" + " after:Forestry;" + " after:PFAAGeologica;" + @@ -327,6 +329,7 @@ public class GT_Mod implements IGT_Mod { ); gregtechproxy.mRenderTileAmbientOcclusion = GregTech_API.sClientDataFile.get("render", "TileAmbientOcclusion", true); gregtechproxy.mRenderGlowTextures = GregTech_API.sClientDataFile.get("render", "GlowTextures", true); + gregtechproxy.mRenderFlippedMachinesFlipped = GregTech_API.sClientDataFile.get("render", "RenderFlippedMachinesFlipped", true); gregtechproxy.mMaxEqualEntitiesAtOneSpot = tMainConfig.get(aTextGeneral, "MaxEqualEntitiesAtOneSpot", 3).getInt(3); gregtechproxy.mSkeletonsShootGTArrows = tMainConfig.get(aTextGeneral, "SkeletonsShootGTArrows", 16).getInt(16); |