Skip to content

Commit

Permalink
Fix Break-Chance display for arrows in toolstations etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Nov 16, 2014
1 parent a4aecae commit 4c26f85
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -260,7 +260,7 @@ private static void drawProjectileStats(NBTTagCompound tags)
write(StatCollector.translateToLocal("gui.toolstation9") + df.format(accuracy) + "%");

// breakchance
final float breakChance = tags.getFloat("BreakChance");
final float breakChance = tags.getFloat("BreakChance") * 100;
write(StatCollector.translateToLocal("gui.toolstation22") + df.format(breakChance) + "%");
}

Expand Down

0 comments on commit 4c26f85

Please sign in to comment.