diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-12-18 22:39:39 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-12-18 22:39:39 +0000 |
commit | 3f621510092078d8b7de66d29661f1a779b326b5 (patch) | |
tree | 15717978b5fe68d5838d26f8bf1e71d33c19d89e /src/Java/gtPlusPlus | |
parent | 4c61569581179dd0f924b7594871d15c9f1a564d (diff) | |
download | GT5-Unofficial-3f621510092078d8b7de66d29661f1a779b326b5.tar.gz GT5-Unofficial-3f621510092078d8b7de66d29661f1a779b326b5.tar.bz2 GT5-Unofficial-3f621510092078d8b7de66d29661f1a779b326b5.zip |
+ Added a new Build Script.
- Removed all libraries found via Maven.
$ Fixed Minor Crash.
Diffstat (limited to 'src/Java/gtPlusPlus')
3 files changed, 22 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/COPYRIGHT.MD b/src/Java/gtPlusPlus/COPYRIGHT.MD new file mode 100644 index 0000000000..6c199fa5fe --- /dev/null +++ b/src/Java/gtPlusPlus/COPYRIGHT.MD @@ -0,0 +1,18 @@ +COPYRIGHT TEMPLATE + +Copyright (c) ${date} AlkCorp. + +All rights reserved. +Distribution of the software in any form is only allowed with explicit, +prior permission from the owner. + +This class is provided freely and may be decompiled and modified for private use, +either with a decompiler or a bytecode editor. Public use of modified or derivative versions +is prohibited unless you are given specific written permission. + +Distribution of the source code, modified (including custom compilation) or otherwise, +is prohibited by anyone except the author, except in the case of a derivative mod that has +been given prior approval. Creating derivative works for commercial use is expressly forbidden +and the owner reserves full right to seek damages. + +Contributors: https://github.com/alkcorp/GTplusplus/graphs/contributors
\ No newline at end of file diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/advanced/GregtechMetaTileEntity_Adv_EBF.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/advanced/GregtechMetaTileEntity_Adv_EBF.java index 4d38e686cf..71cb15474b 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/advanced/GregtechMetaTileEntity_Adv_EBF.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/advanced/GregtechMetaTileEntity_Adv_EBF.java @@ -188,6 +188,8 @@ public class GregtechMetaTileEntity_Adv_EBF extends GregtechMeta_MultiBlockBase } } } + + // TODO - Fix Casing Count return true; } diff --git a/src/Java/gtPlusPlus/xmod/ic2/item/CustomKineticRotor.java b/src/Java/gtPlusPlus/xmod/ic2/item/CustomKineticRotor.java index 326789d7e2..92d711101b 100644 --- a/src/Java/gtPlusPlus/xmod/ic2/item/CustomKineticRotor.java +++ b/src/Java/gtPlusPlus/xmod/ic2/item/CustomKineticRotor.java @@ -25,7 +25,7 @@ public class CustomKineticRotor extends Item implements IKineticRotor { private final int mTier; @SideOnly(Side.CLIENT) - private final IIcon[] mTextures; + private IIcon[] mTextures; private static final String[] mRegistrationNames = new String[] { "itemwoodrotor", "itemironrotor", "itemsteelrotor", "itemwcarbonrotor" @@ -72,12 +72,6 @@ public class CustomKineticRotor extends Item implements IKineticRotor { public CustomKineticRotor(int aTier) { mTier = aTier; - if (Utils.isClient()) { - mTextures = new IIcon[6]; - } - else { - mTextures = null; - } this.setMaxStackSize(1); // Handle Differences if EIO is not loaded if (!LoadedMods.EnderIO && (aTier == 0 || aTier == 2)) { @@ -274,6 +268,7 @@ public class CustomKineticRotor extends Item implements IKineticRotor { @Override public void registerIcons(IIconRegister iconRegister) { int aIndex = 0; + mTextures = new IIcon[6]; for (String y : mUnlocalNames) { mTextures[aIndex++] = iconRegister.registerIcon(IC2.textureDomain + ":" + "rotors/" + y); } |