diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-28 19:01:23 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-28 19:01:23 +1000 |
commit | 47637485b2dd6865e22bfffb395a731cc8cbeddb (patch) | |
tree | 1b1d97902ab8d0aeebf014225beaf0546c5d8bba /src/Java/gtPlusPlus/core/item/general | |
parent | d5cb4ecdc6ced041712932ac347476edf18fc40c (diff) | |
download | GT5-Unofficial-47637485b2dd6865e22bfffb395a731cc8cbeddb.tar.gz GT5-Unofficial-47637485b2dd6865e22bfffb395a731cc8cbeddb.tar.bz2 GT5-Unofficial-47637485b2dd6865e22bfffb395a731cc8cbeddb.zip |
$ Fixed Chemical equations on the reactor salt fuels.
% Changed two LFTR recipes to require the full salt mixtures, not just Uranium235 or UF4.
% Changed tooltip on the Slow builders ring.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item/general')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/general/ItemSlowBuildingRing.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/item/general/ItemSlowBuildingRing.java b/src/Java/gtPlusPlus/core/item/general/ItemSlowBuildingRing.java index 1c1479eba0..70ab4d38f5 100644 --- a/src/Java/gtPlusPlus/core/item/general/ItemSlowBuildingRing.java +++ b/src/Java/gtPlusPlus/core/item/general/ItemSlowBuildingRing.java @@ -70,9 +70,9 @@ public class ItemSlowBuildingRing extends Item implements IBauble{ @Override public void addInformation(ItemStack stack, EntityPlayer aPlayer, List list, boolean bool) { list.add(""); - list.add(EnumChatFormatting.GREEN+"Worn as a Ring within Baubles."+EnumChatFormatting.GRAY); - list.add(EnumChatFormatting.GREEN+"Prevents you from sprinting and keeps you stuck crouching."+EnumChatFormatting.GRAY); - list.add(EnumChatFormatting.GREEN+"Press shift once worn to active, take off to stop the effect."+EnumChatFormatting.GRAY); + list.add(EnumChatFormatting.GREEN+"Worn as a Ring within Baubles. Prevents you from sprinting."+EnumChatFormatting.GRAY); + list.add(EnumChatFormatting.GREEN+"Movement speed reduced to crouch speed."+EnumChatFormatting.GRAY); + list.add(EnumChatFormatting.GREEN+"Press shift while worn to toggle crouch on/off."+EnumChatFormatting.GRAY); list.add(""); super.addInformation(stack, aPlayer, list, bool); } |