updated to latest Bukkit snapshot

This commit is contained in:
aPunch 2012-02-21 02:00:29 -06:00
parent 0066fbfe0c
commit b2495f074a
2 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ public class BlacksmithCharacter extends Character {
durability = (short) (maxDurability / 3);
else if (reforge.getDurability() + durability > maxDurability)
durability = (short) (maxDurability - random.nextInt(maxDurability - 25));
reforge.setDurability((short) (durability));
reforge.setDurability(durability);
return false;
}
int chance = 50;