Skip to content

Commit

Permalink
ITS BEOKWENN
Browse files Browse the repository at this point in the history
  • Loading branch information
SyncGit12 committed Jan 20, 2025
1 parent f97ca08 commit 2e06dc0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1322,10 +1322,10 @@ class PlayState extends MusicBeatState
EngineWatermark.setFormat(Paths.font("vcr.ttf"), 16, FlxColor.WHITE, RIGHT, OUTLINE,FlxColor.BLACK);
EngineWatermark.scrollFactor.set();
EngineWatermark.text = SONG.song;
if (ClientPrefs.downScroll) EngineWatermark.y = healthBar.y + 50;
/*if (ClientPrefs.downScroll) EngineWatermark.y = healthBar.y + 50;
else {
return; // replace if wrong
}
}*/
add(EngineWatermark);

switch(ClientPrefs.watermarkStyle)
Expand Down Expand Up @@ -2497,7 +2497,11 @@ class PlayState extends MusicBeatState
public function updateScore(miss:Bool = false)
{
scoreTxtUpdateFrame++;
if (!scoreTxt.visible || scoreTxt == null) return;
if (scoreTxt != null && !scoreTxt.visible || scoreTxt == null)
return;
else {
return;
}
//GAH DAYUM THIS IS MORE OPTIMIZED THAN BEFORE
var divider = switch (ClientPrefs.scoreStyle)
{
Expand Down

1 comment on commit 2e06dc0

@null0346
Copy link

@null0346 null0346 commented on 2e06dc0 Jan 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what.

Image

Please sign in to comment.