From 092dcb5a35aab4074cd4a0fe1019c34f3525d25e Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Thu, 15 Jun 2023 14:31:49 -0400 Subject: [PATCH] counter fix thing --- source/funkin/play/GameOverSubState.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/funkin/play/GameOverSubState.hx b/source/funkin/play/GameOverSubState.hx index 1b79d024b..7c39cef56 100644 --- a/source/funkin/play/GameOverSubState.hx +++ b/source/funkin/play/GameOverSubState.hx @@ -170,8 +170,8 @@ class GameOverSubState extends MusicBeatSubState if (controls.BACK) { blueballed = false; - PlayState.deathCounter = 0; - PlayState.seenCutscene = false; + PlayState.instance.deathCounter = 0; + // PlayState.seenCutscene = false; // old thing... gameOverMusic.stop(); if (PlayStatePlaylist.isStoryMode) FlxG.switchState(new StoryMenuState());