mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-01 02:16:15 -04:00
Fixed zoning error
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user