diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-11-26 17:54:25 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-11-26 17:54:25 +1000 |
commit | 2b28b0849d64b320e42a478f83af6a29c4f28ac1 (patch) | |
tree | 426fd624b944b55f76406a0b88c96c7c8df5dbaf /src/Java/gtPlusPlus/core/item | |
parent | a8442c40315db01d24845faac17c52af11191036 (diff) | |
download | GT5-Unofficial-2b28b0849d64b320e42a478f83af6a29c4f28ac1.tar.gz GT5-Unofficial-2b28b0849d64b320e42a478f83af6a29c4f28ac1.tar.bz2 GT5-Unofficial-2b28b0849d64b320e42a478f83af6a29c4f28ac1.zip |
$ Fixed Large Sifter, Tree Farm & Power Sub-Station not forming on SMP.
$ Fixed issue where INFO_MACHINE_LOGGING would cause NPE's on SMP.
- Removed logging from the Xp Converter.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockEntityBase.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockEntityBase.java b/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockEntityBase.java index 0dda165b6b..b13e6b22bc 100644 --- a/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockEntityBase.java +++ b/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockEntityBase.java @@ -28,8 +28,8 @@ public class ItemBlockEntityBase extends ItemBlock { @Override public final void addInformation(final ItemStack stack, final EntityPlayer aPlayer, final List list, final boolean bool) { if (Block.getBlockFromItem(stack.getItem()) instanceof BlockTankXpConverter){ - list.add(EnumChatFormatting.GRAY+"Liquid Xp can be filled or drained from all four sides."); - list.add(EnumChatFormatting.GRAY+"Mob Essence can be filled or drained from the top and bottom."); + list.add(EnumChatFormatting.GRAY+"Can convert Liquid Xp to Mob Essence and back."); + list.add(EnumChatFormatting.GRAY+"Right click with a Screwdriver to change mode."); } else if (Block.getBlockFromItem(stack.getItem()) instanceof BlockTankXpConverter){ //list.add(EnumChatFormatting.GRAY+"A pile of " + materialName + " dust."); |