Merge remote-tracking branch 'origin/unstable-quests' into unstable-quests

This commit is contained in:
KingRainbow44 2023-04-29 02:01:20 -04:00
commit 5fcfea2b11
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE

View File

@ -895,6 +895,7 @@ public class Avatar {
public boolean unlockConstellation(boolean skipPayment) {
int currentTalentLevel = this.getCoreProudSkillLevel();
if (currentTalentLevel < 0) return false;
int talentId = this.skillDepot.getTalents().get(currentTalentLevel);
return this.unlockConstellation(talentId, skipPayment);
}