stuff
This commit is contained in:
parent
0a8bd8f2e8
commit
114b20de63
|
|
@ -104,7 +104,7 @@ namespace NovetusCMD
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
GlobalVars.WebServer = new SimpleHTTPServer(GlobalVars.DataPath, GlobalVars.WebServer_Port);
|
GlobalVars.WebServer = new SimpleHTTPServer(GlobalVars.ServerDir, GlobalVars.WebServer_Port);
|
||||||
ConsolePrint("WebServer: Server is running on port: " + GlobalVars.WebServer.Port.ToString(), 3);
|
ConsolePrint("WebServer: Server is running on port: " + GlobalVars.WebServer.Port.ToString(), 3);
|
||||||
}
|
}
|
||||||
catch (Exception ex) when (!Env.Debugging)
|
catch (Exception ex) when (!Env.Debugging)
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,8 @@ public static class GlobalVars
|
||||||
public static readonly string RootPath = Directory.GetParent(RootPathLauncher).ToString();
|
public static readonly string RootPath = Directory.GetParent(RootPathLauncher).ToString();
|
||||||
public static readonly string BasePath = RootPath.Replace(@"\", @"\\");
|
public static readonly string BasePath = RootPath.Replace(@"\", @"\\");
|
||||||
public static readonly string DataPath = BasePath + @"\\shareddata";
|
public static readonly string DataPath = BasePath + @"\\shareddata";
|
||||||
public static readonly string ConfigDir = BasePath + @"\\config";
|
public static readonly string ServerDir = DataPath + "\\server";
|
||||||
|
public static readonly string ConfigDir = BasePath + @"\\config";
|
||||||
public static readonly string ConfigDirData = BasePathLauncher + @"\\data";
|
public static readonly string ConfigDirData = BasePathLauncher + @"\\data";
|
||||||
public static readonly string ClientDir = BasePath + @"\\clients";
|
public static readonly string ClientDir = BasePath + @"\\clients";
|
||||||
public static readonly string MapsDir = BasePath + @"\\maps";
|
public static readonly string MapsDir = BasePath + @"\\maps";
|
||||||
|
|
|
||||||
|
|
@ -174,7 +174,7 @@ namespace NovetusLauncher
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
GlobalVars.WebServer = new SimpleHTTPServer(GlobalVars.DataPath, GlobalVars.WebServer_Port);
|
GlobalVars.WebServer = new SimpleHTTPServer(GlobalVars.ServerDir, GlobalVars.WebServer_Port);
|
||||||
ConsolePrint("WebServer: Server is running on port: " + GlobalVars.WebServer.Port.ToString(), 3);
|
ConsolePrint("WebServer: Server is running on port: " + GlobalVars.WebServer.Port.ToString(), 3);
|
||||||
}
|
}
|
||||||
catch (Exception ex) when (!Env.Debugging)
|
catch (Exception ex) when (!Env.Debugging)
|
||||||
|
|
|
||||||
|
|
@ -172,7 +172,7 @@ namespace NovetusLauncher
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
GlobalVars.WebServer = new SimpleHTTPServer(GlobalVars.DataPath, GlobalVars.WebServer_Port);
|
GlobalVars.WebServer = new SimpleHTTPServer(GlobalVars.ServerDir, GlobalVars.WebServer_Port);
|
||||||
ConsolePrint("WebServer: Server is running on port: " + GlobalVars.WebServer.Port.ToString(), 3);
|
ConsolePrint("WebServer: Server is running on port: " + GlobalVars.WebServer.Port.ToString(), 3);
|
||||||
}
|
}
|
||||||
catch (Exception ex) when (!Env.Debugging)
|
catch (Exception ex) when (!Env.Debugging)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue