diff options
author | miozune <miozune@gmail.com> | 2023-02-18 03:09:38 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-17 19:09:38 +0100 |
commit | e64166c670b7f4e2c37e3cfffb3b4d0a0e7b9f79 (patch) | |
tree | e7a3a4b1884554973721c8417224928654ee78d1 /src/main/java/gregtech/api/GregTech_API.java | |
parent | 61f625feacb5282bb5dcb2c0998d2adfe8a86c93 (diff) | |
download | GT5-Unofficial-e64166c670b7f4e2c37e3cfffb3b4d0a0e7b9f79.tar.gz GT5-Unofficial-e64166c670b7f4e2c37e3cfffb3b4d0a0e7b9f79.tar.bz2 GT5-Unofficial-e64166c670b7f4e2c37e3cfffb3b4d0a0e7b9f79.zip |
Add Hodgepodge compat (#1752)
* Add Hodgepodge compat
* cleanup
* Fix for fluid inside large cell
Diffstat (limited to 'src/main/java/gregtech/api/GregTech_API.java')
-rw-r--r-- | src/main/java/gregtech/api/GregTech_API.java | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/main/java/gregtech/api/GregTech_API.java b/src/main/java/gregtech/api/GregTech_API.java index 41a0885a84..39a39d4f0f 100644 --- a/src/main/java/gregtech/api/GregTech_API.java +++ b/src/main/java/gregtech/api/GregTech_API.java @@ -171,7 +171,7 @@ public class GregTech_API { public static final Map<String, ItemStack> sBookList = new ConcurrentHashMap<>(); /** * The List of all Sounds used in GT, indices are in the static Block at the bottom - * + * * @deprecated Use {@link SoundResource} */ @Deprecated @@ -279,7 +279,8 @@ public class GregTech_API { sMachineRainExplosions = true, sMachineThunderExplosions = true, sMachineFireExplosions = true, sMachineWireFire = true, mOutputRF = false, mInputRF = false, meIOLoaded = false, mRFExplosions = false, mServerStarted = false, mIC2Classic = false, mMagneticraft = false, mImmersiveEngineering = false, - mGTPlusPlus = false, mTranslocator = false, mTConstruct = false, mGalacticraft = false, mAE2 = false; + mGTPlusPlus = false, mTranslocator = false, mTConstruct = false, mGalacticraft = false, mAE2 = false, + mHodgepodge = false; public static int mEUtoRF = 360, mRFtoEU = 20; @@ -733,7 +734,7 @@ public class GregTech_API { /** * Register a new ItemStack as configuration circuits. Duplicates or invalid stacks will be silently ignored. - * + * * @param minTier the minimal tier this circuit can be offered for free, e.g. normal configuration circuit is * available in LV+ single blocks, GT++ breakthrough circuit is offered in HV+ single blocks */ @@ -841,7 +842,7 @@ public class GregTech_API { /** * returns a Cover behavior, guaranteed to not return null after preload - * + * * @return The Cover behavior */ public static GT_CoverBehaviorBase<?> getCoverBehaviorNew(ItemStack aStack) { @@ -982,7 +983,7 @@ public class GregTech_API { /** * Sets the {@link IIconRegister} for Block Icons - * + * * @param aIconRegister The {@link IIconRegister} Icon Register */ @SideOnly(Side.CLIENT) @@ -992,7 +993,7 @@ public class GregTech_API { /** * Sets the {@link IIconRegister} for Items Icons - * + * * @param aIconRegister The {@link IIconRegister} Icon Register */ @SideOnly(Side.CLIENT) |