From 8c1d6d7c4d4a7e734c4f53f8a15ca2d16ac5c2d6 Mon Sep 17 00:00:00 2001 From: KadeDeveloper Date: Tue, 20 Jul 2021 02:22:25 -0700 Subject: [PATCH] fix caching of gamers --- source/Main.hx | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/source/Main.hx b/source/Main.hx index 2fd77ed..788ba61 100644 --- a/source/Main.hx +++ b/source/Main.hx @@ -85,9 +85,6 @@ class Main extends Sprite game = new FlxGame(gameWidth, gameHeight, initialState, zoom, framerate, framerate, skipSplash, startFullscreen); #end addChild(game); - - PlayerSettings.init(); - #if windows DiscordClient.initialize(); @@ -97,13 +94,6 @@ class Main extends Sprite #end - - Highscore.load(); - - FlxG.save.bind('funkin', 'ninjamuffin99'); - - KadeEngineData.initSave(); - #if !mobile fpsCounter = new FPS(10, 3, 0xFFFFFF); addChild(fpsCounter);