Skip to content

Commit

Permalink
Changed victory screen text
Browse files Browse the repository at this point in the history
  • Loading branch information
Asgragrt committed Mar 13, 2024
1 parent d677a87 commit e150edc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Managers/SettingsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ internal static void Load()
_isEnabled = mainCategory.CreateEntry(nameof(IsEnabled), true);

GreatLeftRange = new GreatRangeClass("GreatLeftRange",
"GLeft",
"LGreat",
mainCategory);

PerfectLeftRange = new PerfectRangeClass("PerfectLeftRange",
"PLeft",
"LPerf",
mainCategory);

PerfectRightRange = new PerfectRangeClass("PerfectRightRange",
"PRight",
"RPerf",
mainCategory);

GreatRightRange = new GreatRangeClass("GreatRightRange",
"GRight",
"RGreat",
mainCategory);

string[] messages =
Expand All @@ -53,7 +53,7 @@ internal static void Load()
$"{GreatRightRange.GetDescription()}"
];

foreach (var message in messages) Melon<Main>.Logger.Msg($"{message}");
Melon<Main>.Logger.Msg(string.Join("\n", messages));
}

internal abstract class RangeClass
Expand Down Expand Up @@ -119,7 +119,7 @@ internal string GetRange()

internal string GetDescription()
{
return $"{Name}: {ToString()}";
return $"{Name}: {GetRange()}";
}
}

Expand Down
Binary file modified Media/VictoryRanges.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Media/VictoryRangesHigh.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@ Your timing window will look like this:

### Victory screen custom ranges visualizer

* `LPerf` = `PerfectLeftRange`
* `LGreat` = `GreatLeftRange`
* `RPerf` = `PerfectRightRange`
* `RGreat` = `GreatRightRange`

![VictoryRanges.jpg](Media/VictoryRanges.jpg)

![VictoryRangesHigh.jpg](Media/VictoryRangesHigh.jpg)
Expand Down

0 comments on commit e150edc

Please sign in to comment.