Given I add this code to some hook
player.learnSkill(FireSuperslashSkill);
console.log(player.skills);
player.learnSkill(FireSuperslashSkill);
console.log(player.skills);
player.learnSkill(FireSuperslashSkill);
console.log(player.skills);
Then I am getting this in the console:
I think it should not be possible to learn already learned skill. 🤔