diff options
author | Martin Robertz <dream-master@gmx.net> | 2020-03-19 17:12:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 17:12:47 +0100 |
commit | 4bdccb94802098bf9248e419c51861640fc0f1c1 (patch) | |
tree | d03af88ec036dcb897c5a845369b345aeed3c97f /src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java | |
parent | feca5739287583eee824512ff61714ae4113a6fc (diff) | |
parent | 5959633bc9eea56859e4e569c2aa8b8a427e5ea2 (diff) | |
download | GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.tar.gz GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.tar.bz2 GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.zip |
Merge pull request #251 from GTNewHorizons/Refactor
Refactor
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java b/src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java index e973301395..a518b3baaf 100644 --- a/src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java +++ b/src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java @@ -389,7 +389,7 @@ public interface IMetaTileEntity extends ISidedInventory, IFluidTank, IFluidHand void onColorChangeClient(byte aColor); int getLightOpacity(); - + boolean allowGeneralRedstoneOutput(); void addCollisionBoxesToList(World aWorld, int aX, int aY, int aZ, AxisAlignedBB inputAABB, List<AxisAlignedBB> outputAABB, Entity collider); @@ -402,9 +402,9 @@ public interface IMetaTileEntity extends ISidedInventory, IFluidTank, IFluidHand * The onCreated Function of the Item Class redirects here */ void onCreated(ItemStack aStack, World aWorld, EntityPlayer aPlayer); - + boolean hasAlternativeModeText(); - + String getAlternativeModeText(); boolean shouldJoinIc2Enet(); |