nevermind

This commit is contained in:
Bitl 2019-11-25 17:55:15 -07:00
parent 6d4143fa7e
commit 2f95afbf6f
2 changed files with 8 additions and 8 deletions

View File

@ -131,9 +131,6 @@ public static class GlobalVars
public static readonly string ScriptGenName = "CSMPBoot";
public static SimpleHTTPServer WebServer = null;
public static bool IsWebServerOn = false;
//config name
public static readonly string ConfigName = "config.ini";
public static readonly string ConfigNameCustomization = "character_" + PlayerName + ".ini";
//vars for loader
public static bool ReadyToLaunch = false;
//server settings.
@ -148,8 +145,11 @@ public static class GlobalVars
public static int UserID = 0;
public static string PlayerName = "Player";
public static string PlayerTripcode = "";
//launcher settings.
public static bool CloseOnLaunch = false;
//config name
public static readonly string ConfigName = "config.ini";
public static string ConfigNameCustomization = "config_customization.ini";
//launcher settings.
public static bool CloseOnLaunch = false;
public static bool LocalPlayMode = false;
//client shit
public static string SelectedClient = "";

View File

@ -106,8 +106,8 @@ public class LauncherFuncs
}
GlobalVars.PlayerName = Decryptline3;
GlobalVars.SelectedClient = Decryptline4;
GlobalVars.SelectedClient = Decryptline4;
GlobalVars.Map = Decryptline5;
@ -534,7 +534,7 @@ public class LauncherFuncs
GlobalVars.Custom_Head_Offline + "','" +
GlobalVars.Custom_Icon_Offline + "','" +
GlobalVars.Custom_Extra + "'";
}
}
public static void ReadClientValues(string clientpath)
{