Skip to content

Commit 95df8c7

Browse files
committed
Update PauseSubState.hx
1 parent 4417e87 commit 95df8c7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

source/substates/PauseSubState.hx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ class PauseSubState extends MusicBeatSubstate
8484
levelInfo.updateHitbox();
8585
add(levelInfo);
8686

87-
var levelDifficulty:FlxText = new FlxText(20, 15 + 32, 0, Difficulty.getString().toUpperCase(), 32);
87+
var levelDifficulty:FlxText = new FlxText(20, 15 + 32, 0,
88+
(Difficulty.getString().toUpperCase() +
89+
(PlayState.instance.chartModifier != "Normal" ? ' (' + PlayState.instance.chartModifier + ')'.toUpperCase() : '') +
90+
(Std.is(PlayState.instance, archipelago.APPlayState) ? ' (AP)' : '')), 32);
8891
levelDifficulty.scrollFactor.set();
8992
levelDifficulty.setFormat(Paths.font('vcr.ttf'), 32);
9093
levelDifficulty.updateHitbox();

0 commit comments

Comments
 (0)