From c4db591f09aa6a52de2c64c90dbe60aa311e9de9 Mon Sep 17 00:00:00 2001 From: Lucky56 <55949451+Lucky-56@users.noreply.github.com> Date: Sat, 19 Jun 2021 07:44:14 +0200 Subject: [PATCH] due to freeplay songs unlocking aswell, default value is 'week 6 beat' --- source/KadeEngineData.hx | 2 +- source/Options.hx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/KadeEngineData.hx b/source/KadeEngineData.hx index e412609..efe7d53 100644 --- a/source/KadeEngineData.hx +++ b/source/KadeEngineData.hx @@ -6,7 +6,7 @@ class KadeEngineData public static function initSave() { if (FlxG.save.data.weekUnlocked == null) - FlxG.save.data.weekUnlocked = 6; + FlxG.save.data.weekUnlocked = 7; if (FlxG.save.data.newInput == null) FlxG.save.data.newInput = true; diff --git a/source/Options.hx b/source/Options.hx index 49480bd..d84616d 100644 --- a/source/Options.hx +++ b/source/Options.hx @@ -721,7 +721,7 @@ class ResetSettings extends Option display = updateDisplay(); return true; } - FlxG.save.data.weekUnlocked = 6; + FlxG.save.data.weekUnlocked = 7; FlxG.save.data.newInput = true; FlxG.save.data.downscroll = false; FlxG.save.data.dfjk = false;