mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-04-03 18:59:42 -04:00
fix: Actually check if the Playable Character is unlocked
This commit is contained in:
parent
06c12e36c6
commit
7058126e99
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue