diff --git a/Changelog.txt b/Changelog.txt index 521070d44..2065bbb11 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -18,6 +18,7 @@ Version 1.3.00-dev + Added Fast Food Service subskill to Taming + Added size limit to Tree Feller in config as Tree Feller Threshold + Re-added mcMMO reporting damage events + = Fixed bug where Swords command showed Bleed Length twice instead of Bleed Chance = Fixed bug where Tree Feller wasn't checking for Tree Feller permission = Fixed bug where Leaf Blower required Tree Feller permissions rather than Woodcutting permissions = Fixed Leaf Blower preventing the use of shears to collect leaves diff --git a/src/main/java/com/gmail/nossr50/commands/skills/SwordsCommand.java b/src/main/java/com/gmail/nossr50/commands/skills/SwordsCommand.java index 0e6a43672..8f003d86b 100644 --- a/src/main/java/com/gmail/nossr50/commands/skills/SwordsCommand.java +++ b/src/main/java/com/gmail/nossr50/commands/skills/SwordsCommand.java @@ -61,7 +61,7 @@ public class SwordsCommand implements CommandExecutor { player.sendMessage(mcLocale.getString("m.SwordsCounterAttChance", new Object[] { counterattackpercentage })); player.sendMessage(mcLocale.getString("m.SwordsBleedLength", new Object[] { bleedrank })); player.sendMessage(mcLocale.getString("m.SwordsTickNote")); - player.sendMessage(mcLocale.getString("m.SwordsBleedLength", new Object[] { percentage })); + player.sendMessage(mcLocale.getString("m.SwordsBleedChance", new Object[] { percentage })); player.sendMessage(mcLocale.getString("m.SwordsSSLength", new Object[] { ticks })); return true;