From 4c0186f5fb91332310176ce4add0d768d99482d2 Mon Sep 17 00:00:00 2001 From: Brandon Date: Fri, 6 Nov 2020 21:59:51 -0500 Subject: [PATCH] Update Highscore.hx --- source/Highscore.hx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/Highscore.hx b/source/Highscore.hx index b57870518..4b14746fd 100644 --- a/source/Highscore.hx +++ b/source/Highscore.hx @@ -10,7 +10,9 @@ class Highscore { var daSong:String = formatSong(song, diff); + #if !switch NGio.postScore(score, song); + #end if (songScores.exists(daSong)) { @@ -23,7 +25,9 @@ class Highscore public static function saveWeekScore(week:Int = 1, score:Int = 0, ?diff:Int = 0):Void { + #if !switch NGio.postScore(score, "Week " + week); + #end var daWeek:String = formatSong('week' + week, diff);