From 6f5ec79861f8972055c48926fe31a62566ae43ab Mon Sep 17 00:00:00 2001 From: mightycristal Date: Mon, 20 May 2024 18:47:05 -0300 Subject: [PATCH] Update PlayState.hx --- source/PlayState.hx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index b26c50c..5ff173c 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -1205,14 +1205,13 @@ class PlayState extends MusicBeatState + 50, 0, SONG.song + " - " - + CoolUtil.difficultyFromInt(storyDifficulty) - + (Main.watermarks ? " | KE " + MainMenuState.kadeEngineVer : ""), 16); + + CoolUtil.difficultyFromInt(storyDifficulty); kadeEngineWatermark.setFormat(Paths.font("vcr.ttf"), 16, FlxColor.WHITE, RIGHT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK); kadeEngineWatermark.scrollFactor.set(); add(kadeEngineWatermark); - techEngineWatermark = new FlxText(0, FlxG.height + 45, 0, "T.E. " + - MainMenuState.techEngineVer, 16); + techEngineWatermark = new FlxText(0, FlxG.height + 45, 0, "Tech Engine (" + + "KE 1.6)", 16); techEngineWatermark.setFormat(Paths.font("vcr.ttf"), 16, FlxColor.WHITE, RIGHT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK); techEngineWatermark.y = 675; techEngineWatermark.scrollFactor.set();