diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-02 22:52:04 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-02 22:52:04 +1000 |
commit | 015f77f4d2c108c01c4a0524ed28803683f31ca4 (patch) | |
tree | 4630921be62cec72b028ee9eb9302a0dc56c7d2e /src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations | |
parent | 8b9c000a837cf77ffd733519bbeccdd45a1364ef (diff) | |
download | GT5-Unofficial-015f77f4d2c108c01c4a0524ed28803683f31ca4.tar.gz GT5-Unofficial-015f77f4d2c108c01c4a0524ed28803683f31ca4.tar.bz2 GT5-Unofficial-015f77f4d2c108c01c4a0524ed28803683f31ca4.zip |
% Improved Creative Energy Buffer, Now it's voltage can change via screwdrivering it.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMetaTileEntity.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMetaTileEntity.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMetaTileEntity.java index f77e185b72..4140617fcf 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMetaTileEntity.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMetaTileEntity.java @@ -11,12 +11,12 @@ public abstract class GregtechMetaTileEntity extends MetaTileEntity { /** * Value between [0 - 9] to describe the Tier of this Machine. */ - public final byte mTier; + protected byte mTier; /** * A simple Description. */ - public final String mDescription; + protected final String mDescription; /** * Contains all Textures used by this Block. |