From e64166c670b7f4e2c37e3cfffb3b4d0a0e7b9f79 Mon Sep 17 00:00:00 2001 From: miozune Date: Sat, 18 Feb 2023 03:09:38 +0900 Subject: Add Hodgepodge compat (#1752) * Add Hodgepodge compat * cleanup * Fix for fluid inside large cell --- src/main/java/gregtech/api/GregTech_API.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/main/java/gregtech/api') 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 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) -- cgit