1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-06-19 15:31:25 +02:00

Merge pull request from Glitchfinder/master

Fixes the broken /skillreset command.
This commit is contained in:
Glitchfinder 2012-12-27 12:42:23 -08:00
commit fcd2fb0f12

@ -27,7 +27,7 @@ public class SkillResetCommand implements CommandExecutor {
SkillType skillType = null; //simple initialization
//make sure there's only one argument. output at least some kind of error if not
if (args.length != 1 && args[0] != null) {
if (args.length == 0 || (args.length != 1 && args[0] != null)) {
sender.sendMessage(LocaleLoader.getString("Commands.Skill.Invalid"));
return true;
}