Fixed the guide usage string showing up every time /skillname was called

This commit is contained in:
GJ 2013-01-30 12:30:45 -05:00
parent 8eee0cb0b0
commit 1c0cafc6c8
2 changed files with 4 additions and 1 deletions

View File

@ -20,6 +20,7 @@ Version 1.4.00-dev
+ Added XP bonus for Archery based on distance from shooter to target + Added XP bonus for Archery based on distance from shooter to target
+ Added ability to config Hylian Luck drops through treasures.yml + Added ability to config Hylian Luck drops through treasures.yml
+ Added party XP sharing + Added party XP sharing
= 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 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 = Fixed Spout config files loading / generating when they shouldn't have
= Fixed mod config files loading / generating when they shouldn't have = Fixed mod config files loading / generating when they shouldn't have

View File

@ -89,7 +89,9 @@ public final class SkillGuide {
} }
} }
} }
else {
// We have to specify this, else we get the usage string every time we call /skillname...
else if (args.length != 0) {
player.sendMessage(LocaleLoader.getString("Guides.Usage", new Object[] {localized.toLowerCase()} )); player.sendMessage(LocaleLoader.getString("Guides.Usage", new Object[] {localized.toLowerCase()} ));
} }
} }