Skip to content

Commit

Permalink
i am back.
Browse files Browse the repository at this point in the history
just needed to fix a minor issue with the difficulties
  • Loading branch information
charlesisfeline committed Feb 11, 2024
1 parent 86b7cf8 commit 2737879
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/backend/Difficulty.hx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class Difficulty
{
if(num == null) num = PlayState.storyDifficulty;

var fileSuffix:String = list[num];
if(fileSuffix != defaultDifficulty)
var fileSuffix:String = list[num].toLowerCase();
if(fileSuffix != defaultDifficulty.toLowerCase())
{
fileSuffix = '-' + fileSuffix;
}
Expand Down

0 comments on commit 2737879

Please sign in to comment.