1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-27 09:13:18 +00:00

check if newgroups api key actually exists before creating core

This commit is contained in:
Jan200101 2021-02-05 13:14:28 +01:00
parent 7abd7c5c2e
commit d38323ab55

View file

@ -35,6 +35,8 @@ class NGio
trace('INIT NOLOGIN'); trace('INIT NOLOGIN');
GAME_VER = "v" + Application.current.meta.get('version'); GAME_VER = "v" + Application.current.meta.get('version');
if (api.length != 0)
{
NG.create(api); NG.create(api);
new FlxTimer().start(2, function(tmr:FlxTimer) new FlxTimer().start(2, function(tmr:FlxTimer)
@ -49,6 +51,7 @@ class NGio
call.send(); call.send();
}); });
} }
}
public function new(api:String, encKey:String, ?sessionId:String) public function new(api:String, encKey:String, ?sessionId:String)
{ {