Refactored CreatureObject

This commit is contained in:
Treeku
2014-08-16 20:35:06 +01:00
parent 51c14284eb
commit 0175a6716e
23 changed files with 1769 additions and 2865 deletions
+1 -1
View File
@@ -407,7 +407,7 @@ public class SkillService implements INetworkDispatch {
List<String> skills = new ArrayList<String>(creature.getSkills());
skills.stream().filter(s -> s.contains("expertise")).forEach(s -> removeSkill(creature, s));
creature.getBuffList().stream().forEach(buff -> creature.removeBuff(buff));
creature.getBuffList().values().stream().forEach(buff -> creature.removeBuff(buff));
}
public void sendRespecWindow(CreatureObject creature) {