Skip to content

Commit

Permalink
Update ThanksState.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Nov 11, 2023
1 parent d9855f5 commit afc98e8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion source/states/ThanksState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,17 @@ class ThanksState extends MusicBeatState {
grid.alpha = 0;
FlxTween.tween(grid, {alpha: 1}, 0.5, {ease: FlxEase.quadOut});

#if debug
var txt:FlxText = new FlxText(0, 0, FlxG.width,
"Thanks for playing Vs. Foxa Ultimate Edition!\nYou are on a Developer Build.\nIf you were given this by someone who isn't a dev/playtester,\nplease contact one of the devs at Foxacord.\n(https://discord.gg/FARpwR9K4k)"
"Thanks for playing Vs. Foxa 3.0!\nYou are on a Developer Build.\nIf you were given this by someone who isn't a dev/playtester,\nplease contact one of the devs at Foxacord.\n(https://discord.gg/FARpwR9K4k)"
+ "\n\nPress Enter to continue.",
32);
#else
var txt:FlxText = new FlxText(0, 0, FlxG.width,
"Thanks for playing Vs. Foxa 3.0!\nWe have worked hard on this for long, and we appreciate you playing the mod!\nAlso, if you want, you can join the official VS.FOXA server.\n(https://discord.gg/FARpwR9K4k)"
+ "\n\nPress Enter to continue.",
32);
#end

txt.setFormat(Paths.font("vcr.ttf"), 32, FlxColor.fromRGB(200, 200, 200), CENTER);
txt.borderColor = FlxColor.BLACK;
Expand Down

0 comments on commit afc98e8

Please sign in to comment.