Skip to content

Commit

Permalink
Update ModRedstone.java
Browse files Browse the repository at this point in the history
  • Loading branch information
TheVikingWarrior committed Apr 16, 2014
1 parent e9d602a commit cc414fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/tconstruct/modifiers/tools/ModRedstone.java
Expand Up @@ -72,7 +72,7 @@ public void modify (ItemStack[] input, ItemStack tool)
int modifiers = tags.getInteger("Modifiers");
modifiers -= 1;
tags.setInteger("Modifiers", modifiers);
String modName = "\u00a74" + StatCollector.translateToLocal("modifier.tool.redstone") + (" + increase + "/" + max + ");
String modName = "\u00a74" + StatCollector.translateToLocal("gui.modifier.redstone") + (" + increase + "/" + max + ");
int tooltipIndex = addToolTip(tool, tooltipName, modName);
keyPair = new int[] { increase, max, tooltipIndex };
tags.setIntArray(key, keyPair);
Expand Down Expand Up @@ -107,7 +107,7 @@ void updateModTag (ItemStack tool, int[] keys)
{
NBTTagCompound tags = tool.getTagCompound().getCompoundTag("InfiTool");
String tip = "ModifierTip" + keys[2];
String modName = "\u00a74" + StatCollector.translateToLocal("modifier.tool.redstone") + (" + keys[0] + "/" + keys[1] + ");
String modName = "\u00a74" + StatCollector.translateToLocal("gui.modifier.redstone") + (" + keys[0] + "/" + keys[1] + ");
tags.setString(tip, modName);
}

Expand Down

0 comments on commit cc414fa

Please sign in to comment.