better comprehensibility

This commit is contained in:
Lucky56 2021-06-18 23:58:33 +02:00
parent ef3e0e135e
commit e13318ca13
No known key found for this signature in database
GPG Key ID: 19E3875EAD1F8B8F
2 changed files with 4 additions and 4 deletions

View File

@ -661,7 +661,7 @@ class LockWeeksOption extends Option
private override function updateDisplay():String
{
return confirm ? "Confirm" : "Reset Story Progression";
return confirm ? "Confirm Story Reset" : "Reset Story Progress";
}
}
@ -691,7 +691,7 @@ class ResetScoreOption extends Option
for(key in Highscore.songCombos.keys())
{
Highscore.songCombos[key] = '';
}
}
confirm = false;
trace('Save Data Wiped');
display = updateDisplay();
@ -700,6 +700,6 @@ class ResetScoreOption extends Option
private override function updateDisplay():String
{
return confirm ? "Confirm" : "Reset Score";
return confirm ? "Confirm Score Reset" : "Reset Score";
}
}

View File

@ -62,7 +62,7 @@ class OptionsMenu extends MusicBeatState
new OptionCategory("Saved Data", [
new ResetScoreOption("Reset your score on all songs and weeks."),
new LockWeeksOption("Reset your storymode progress. (only Tutorial + Week 1 is unlocked)")
new LockWeeksOption("Reset your storymode progress. (only Tutorial + Week 1 will be unlocked)")
])
];