From 8a57ce446c94202b036067634073a1c4ef2173a4 Mon Sep 17 00:00:00 2001 From: CuckyDev Date: Mon, 2 Aug 2021 22:23:37 -0400 Subject: [PATCH] Fix inconsistent stuff --- source/ChartingState.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 2e8fbab..1ee45ee 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -2584,7 +2584,7 @@ class ChartingState extends MusicBeatState function loadJson(song:String):Void { - var difficultyArray:Array = ['-easy', "", "-hard"]; + var difficultyArray:Array = ["-easy", "", "-hard"]; var format = StringTools.replace(PlayState.SONG.song.toLowerCase(), " ", "-"); switch (format) { case 'Dad-Battle': format = 'Dadbattle'; @@ -2610,7 +2610,7 @@ class ChartingState extends MusicBeatState private function saveLevel() { - var difficultyArray:Array = ['-easy', "", "-hard"]; + var difficultyArray:Array = ["-easy", "", "-hard"]; var json = { "song": _song };