Setup locale for Axe Splintering message

This commit is contained in:
nossr50
2012-03-02 12:39:18 -08:00
parent feb073d159
commit 288e82fbc3
10 changed files with 19 additions and 10 deletions

View File

@ -76,7 +76,7 @@ public class WoodCutting
if((player.getItemInHand().getDurability() + durabilityLoss >= player.getItemInHand().getType().getMaxDurability())
|| player.getItemInHand().getType() == Material.AIR || player.getItemInHand() == null)
{
player.sendMessage(ChatColor.RED+"YOUR AXE SPLINTERS INTO DOZENS OF PIECES");
player.sendMessage(mcLocale.getString("TreeFeller.AxeSplinters"));
if(player.getHealth() >= 2)
Combat.dealDamage(player, (int)(Math.random() * (player.getHealth()-1)));