fix: Actually check if the Playable Character is unlocked

This commit is contained in:
Abnormal 2024-10-21 10:31:54 -05:00 committed by Eric
parent 06c12e36c6
commit 7058126e99

View file

@ -474,7 +474,10 @@ class CharSelectSubState extends MusicBeatSubState
}
else
{
if (availableChars.exists(i)) nonLocks.push(i);
var playableCharacterId:String = availableChars.get(i);
var player:Null<PlayableCharacter> = PlayerRegistry.instance.fetchEntry(playableCharacterId);
var isPlayerUnlocked:Bool = player?.isUnlocked() ?? false;
if (availableChars.exists(i) && isPlayerUnlocked) nonLocks.push(i);
var temp:Lock = new Lock(0, 0, i);
temp.ID = 1;