aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/item
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-03-04 13:58:42 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-03-04 13:58:42 +1000
commitc1bc1264c68eba43600a318f71a428e879fec7f6 (patch)
tree9ee508b3e134eff24e5732ce4975537521e2edd0 /src/Java/gtPlusPlus/core/item
parentae21012d216df71f31aed6fbc9d76215fc24ceed (diff)
downloadGT5-Unofficial-c1bc1264c68eba43600a318f71a428e879fec7f6.tar.gz
GT5-Unofficial-c1bc1264c68eba43600a318f71a428e879fec7f6.tar.bz2
GT5-Unofficial-c1bc1264c68eba43600a318f71a428e879fec7f6.zip
% Changed some spellings/language.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item')
-rw-r--r--src/Java/gtPlusPlus/core/item/base/CoreItem.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/item/base/CoreItem.java b/src/Java/gtPlusPlus/core/item/base/CoreItem.java
index a5f1f7f705..e3e6b57624 100644
--- a/src/Java/gtPlusPlus/core/item/base/CoreItem.java
+++ b/src/Java/gtPlusPlus/core/item/base/CoreItem.java
@@ -51,7 +51,7 @@ public class CoreItem extends Item
*/
public CoreItem(final String unlocalizedName, final CreativeTabs creativeTab, final ItemStack OverrideItem)
{
- this(unlocalizedName, creativeTab, 64, 0, "This item will be replaced by another when helf by a player, it is old and should not be used in recipes.", EnumRarity.uncommon, EnumChatFormatting.UNDERLINE, false, OverrideItem); //Calls 5
+ this(unlocalizedName, creativeTab, 64, 0, "This item will be replaced by another when held by a player, it is old and should not be used in recipes.", EnumRarity.uncommon, EnumChatFormatting.UNDERLINE, false, OverrideItem); //Calls 5
}
//0.1
/*
@@ -59,7 +59,7 @@ public class CoreItem extends Item
*/
public CoreItem(final String unlocalizedName, final String displayName, final CreativeTabs creativeTab, final ItemStack OverrideItem)
{
- this(unlocalizedName, creativeTab, 64, 0, "This item will be replaced by another when helf by a player, it is old and should not be used in recipes.", EnumRarity.uncommon, EnumChatFormatting.UNDERLINE, false, OverrideItem); //Calls 5
+ this(unlocalizedName, creativeTab, 64, 0, "This item will be replaced by another when held by a player, it is old and should not be used in recipes.", EnumRarity.uncommon, EnumChatFormatting.UNDERLINE, false, OverrideItem); //Calls 5
this.itemName = displayName;
}