Skip to content

Commit

Permalink
Various additions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nennneko5787 committed Sep 20, 2022
1 parent 053a0eb commit ad2f02a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions source/OutdatedState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class OutdatedState extends MusicBeatState

warnText = new FlxText(0, 0, FlxG.width,
"Sup bro, looks like you're running an \n
outdated version of Psych Engine (" + MainMenuState.psychEngineVersion + "),\n
outdated version of nekoEngine (" + MainMenuState.nekoEngineVersion + "),\n
please update to " + TitleState.updateVersion + "!\n
Press ESCAPE to proceed anyway.\n
\n
Expand All @@ -41,7 +41,7 @@ class OutdatedState extends MusicBeatState
if(!leftState) {
if (controls.ACCEPT) {
leftState = true;
CoolUtil.browserLoad("https://github.com/ShadowMario/FNF-PsychEngine/releases");
CoolUtil.browserLoad("https://github.com/nennneko5787/FNF-nekoEngine/releases");
}
else if(controls.BACK) {
leftState = true;
Expand Down
2 changes: 1 addition & 1 deletion source/TitleState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class TitleState extends MusicBeatState
http.onData = function (data:String)
{
updateVersion = data.split('\n')[0].trim();
var curVersion:String = MainMenuState.psychEngineVersion.trim();
var curVersion:String = MainMenuState.nekoEngineVersion.trim();
trace('version online: ' + updateVersion + ', your version: ' + curVersion);
if(updateVersion != curVersion) {
trace('versions arent matching!');
Expand Down

0 comments on commit ad2f02a

Please sign in to comment.