Fix /addlevels all and /skillreset all commands

Fixes #1675
This commit is contained in:
TfT_02
2013-12-12 16:50:36 +01:00
parent 7c7aa994a5
commit 65aa05a660
3 changed files with 15 additions and 6 deletions

View File

@ -152,7 +152,7 @@ public class SkillresetCommand implements TabExecutor {
protected void editValues(Player player, PlayerProfile profile, SkillType skill) {
if (skill == null) {
for (SkillType skillType : SkillType.values()) {
for (SkillType skillType : SkillType.NON_CHILD_SKILLS) {
handleCommand(player, profile, skillType);
}