Skip to content

Commit

Permalink
remove them woops
Browse files Browse the repository at this point in the history
  • Loading branch information
Snirozu committed Sep 29, 2024
1 parent 6bb55d9 commit 447c51f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions source/online/net/Auth.hx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class Auth {

public static function load() {
savePath = lime.system.System.applicationStorageDirectory + 'peo_auth.json';
trace(savePath);

if (!FileSystem.exists(savePath)) {
if (!FileSystem.exists(Path.directory(savePath)))
Expand Down Expand Up @@ -51,11 +50,9 @@ class Auth {
public static function save(id:String, token:String) {
saveData.id = authID = id;
saveData.token = authToken = token;
trace(saveData);
}

public static function saveClose() {
trace(saveData);
File.saveContent(savePath, Json.stringify(saveData));
Sys.exit(1);
}
Expand Down

0 comments on commit 447c51f

Please sign in to comment.