Debug unbinding passive skill.

This commit is contained in:
Ka0rX 2023-03-19 20:42:28 +01:00
parent 10cfc48c9a
commit 5edc6ac999

View File

@ -1173,7 +1173,8 @@ public class PlayerData extends OfflinePlayerData implements Closable, Experienc
} }
public void unbindSkill(int slot) { public void unbindSkill(int slot) {
boundSkills.remove(slot); BoundSkillInfo boundSkillInfo=boundSkills.remove(slot);
boundSkillInfo.unbind();
} }