Skip to content

Commit

Permalink
Fixed target lock of creative modifiers not being localized
Browse files Browse the repository at this point in the history
  • Loading branch information
squeek502 committed Sep 20, 2014
1 parent 263efb8 commit 6dd890d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/tconstruct/tools/items/CreativeModifier.java
Expand Up @@ -57,6 +57,7 @@ public void addInformation (ItemStack stack, EntityPlayer player, List list, boo
{
String targetLock = "None";
targetLock = stack.getTagCompound().getString("TargetLock");
targetLock = StatCollector.translateToLocal("tool." + targetLock.toLowerCase());
list.add(StatCollector.translateToLocal("creativeModLock.tooltip") + targetLock);
}
}
Expand Down

0 comments on commit 6dd890d

Please sign in to comment.