Don't include child skills in these loops. Fixes #577

This commit is contained in:
GJ
2013-01-24 09:08:30 -05:00
parent bba23de31c
commit b7bb3f4487
6 changed files with 26 additions and 7 deletions

View File

@ -136,7 +136,7 @@ public class SpoutStuff {
//Standard XP Icons
for (SkillType y : SkillType.values()) {
if (y.equals(SkillType.ALL)) {
if (y.equals(SkillType.ALL) || y.isChildSkill()) {
continue;
}
@ -197,7 +197,7 @@ public class SpoutStuff {
/* Standard XP Icons */
for (SkillType y : SkillType.values()) {
if (y.equals(SkillType.ALL)) {
if (y.equals(SkillType.ALL) || y.isChildSkill()) {
continue;
}