mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-27 01:55:52 -05:00
Fix crash in chart editor minimal Playtest
This commit is contained in:
parent
31e80381bb
commit
0494ddb506
2 changed files with 2 additions and 8 deletions
|
@ -1976,7 +1976,7 @@ class PlayState extends MusicBeatSubState
|
||||||
|
|
||||||
// Mute vocals and play miss animation, but don't penalize.
|
// Mute vocals and play miss animation, but don't penalize.
|
||||||
vocals.playerVolume = 0;
|
vocals.playerVolume = 0;
|
||||||
currentStage.getBoyfriend().playSingAnimation(holdNote.noteData.getDirection(), true);
|
if (currentStage != null && currentStage.getBoyfriend() != null) currentStage.getBoyfriend().playSingAnimation(holdNote.noteData.getDirection(), true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -747,13 +747,7 @@ class Stage extends FlxSpriteGroup implements IPlayStateScriptedClass implements
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function onUpdate(event:UpdateScriptEvent)
|
public function onUpdate(event:UpdateScriptEvent) {}
|
||||||
{
|
|
||||||
if (FlxG.keys.justPressed.F3)
|
|
||||||
{
|
|
||||||
debugIconGroup.visible = !debugIconGroup.visible;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public override function kill()
|
public override function kill()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue