From 32040d50074c9c682029e40b1015be23ac678dbe Mon Sep 17 00:00:00 2001 From: codeeater_ <55358751+toxichead@users.noreply.github.com> Date: Mon, 26 Jul 2021 12:50:16 +0300 Subject: [PATCH] final fix for spooky bois --- source/PlayState.hx | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index d27dbd3..d6379df 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -4469,20 +4469,8 @@ class PlayState extends MusicBeatState //SPOOKY BOIS AND GF FIX switch (dad.curCharacter) { case 'spooky': - var commandToDance = false; - var commandCompleted = false; - if (SONG.notes[Math.floor(curStep / 16)].mustHitSection) - { - commandToDance = true; - commandCompleted = false; - } - - if (commandToDance && !commandCompleted) - { + if (curBeat % 128 == 0) //lol it works dad.dance(); - commandToDance = false; - commandCompleted = true; - } case 'gf': { if (SONG.notes[Math.floor(curStep / 16)].mustHitSection)