From d0c0b9a089d3b99e7fe68740860fef2d0275613f Mon Sep 17 00:00:00 2001 From: GJ Date: Thu, 31 Jan 2013 21:58:09 -0500 Subject: [PATCH] Fixed /mmoedit not giving feedback when modifying another players stats. Addresses #243 --- Changelog.txt | 1 + .../java/com/gmail/nossr50/commands/general/MmoeditCommand.java | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Changelog.txt b/Changelog.txt index 6cc4b1af7..f533e5734 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -21,6 +21,7 @@ Version 1.4.00-dev + Added ability to config Hylian Luck drops through treasures.yml + Added party XP sharing + Added vanilla XP boost for Fishing - includes permissions, config options, etc + = Fixed /mmoedit not giving feedback when modifying another players stats = Fixed the guide usage string showing up every time /skillname was called = Fixed Spout not being able to precache our resources properly, and therefore making our XP bars fail = Fixed Spout config files loading / generating when they shouldn't have diff --git a/src/main/java/com/gmail/nossr50/commands/general/MmoeditCommand.java b/src/main/java/com/gmail/nossr50/commands/general/MmoeditCommand.java index 02f9d4934..170eb40bc 100644 --- a/src/main/java/com/gmail/nossr50/commands/general/MmoeditCommand.java +++ b/src/main/java/com/gmail/nossr50/commands/general/MmoeditCommand.java @@ -111,6 +111,8 @@ public class MmoeditCommand implements CommandExecutor { profile.modifySkill(skill, newValue); profile.save(); + + sender.sendMessage(LocaleLoader.getString("Commands.mmoedit.Modified.2", new Object[] {skillName, args[0]})); } return true;