Fixed zoning error

This commit is contained in:
Seefo
2014-04-04 13:32:48 -04:00
parent ab3c32e15d
commit 973ab6da62
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -399,7 +399,7 @@ public class SkillService implements INetworkDispatch {
}
public void resetExpertise(CreatureObject creature) {
List<String> skills = new ArrayList<String>(creature.getSkills().get());
List<String> skills = new ArrayList<String>(creature.getSkills());
skills.stream().filter(s -> s.contains("expertise")).forEach(s -> removeSkill(creature, s));
}