mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-26 07:06:45 +01:00
Fixed the guide usage string showing up every time /skillname was called
This commit is contained in:
parent
8eee0cb0b0
commit
1c0cafc6c8
@ -20,6 +20,7 @@ Version 1.4.00-dev
|
||||
+ Added XP bonus for Archery based on distance from shooter to target
|
||||
+ Added ability to config Hylian Luck drops through treasures.yml
|
||||
+ 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 config files loading / generating when they shouldn't have
|
||||
= Fixed mod config files loading / generating when they shouldn't have
|
||||
|
@ -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()} ));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user