comment cleanup
This commit is contained in:
@@ -8,9 +8,10 @@
|
|||||||
|
|
||||||
package engine.gameManager;
|
package engine.gameManager;
|
||||||
|
|
||||||
/* This enumeration implements Magicbane's configuration data which
|
// Magicbane configuration is loaded from environment variables
|
||||||
is loaded from environment variables.
|
//
|
||||||
*/
|
// On boot the game first looks in mb.conf for the file magicbane.conf.
|
||||||
|
// If not found, a default is loaded from /mb.data to enable bootstrap.
|
||||||
|
|
||||||
import engine.mbEnums;
|
import engine.mbEnums;
|
||||||
import engine.server.login.LoginServer;
|
import engine.server.login.LoginServer;
|
||||||
@@ -105,11 +106,11 @@ public enum ConfigManager {
|
|||||||
// and determine the server type at runtime.
|
// and determine the server type at runtime.
|
||||||
|
|
||||||
public static final String DEFAULT_DATA_DIR = "mb.data/";
|
public static final String DEFAULT_DATA_DIR = "mb.data/";
|
||||||
public static Map<String, String> configMap = new HashMap(System.getenv());
|
public static final Map<String, String> configMap = new HashMap(System.getenv());
|
||||||
public static mbEnums.ServerType serverType = mbEnums.ServerType.NONE;
|
public static mbEnums.ServerType serverType = mbEnums.ServerType.NONE;
|
||||||
public static WorldServer worldServer;
|
public static WorldServer worldServer;
|
||||||
public static LoginServer loginServer;
|
public static LoginServer loginServer;
|
||||||
public static Map<ConfigManager, Pattern> regex = new HashMap<>();
|
public static final Map<ConfigManager, Pattern> regex = new HashMap<>();
|
||||||
|
|
||||||
public static String currentRepoBranch = "";
|
public static String currentRepoBranch = "";
|
||||||
|
|
||||||
@@ -124,7 +125,7 @@ public enum ConfigManager {
|
|||||||
Logger.info(configSetting.name() + ":" + configSetting.getValue());
|
Logger.info(configSetting.name() + ":" + configSetting.getValue());
|
||||||
else {
|
else {
|
||||||
Logger.error("Missing Config: " + configSetting.name());
|
Logger.error("Missing Config: " + configSetting.name());
|
||||||
Logger.error("This codebase requires >= MagicBox v1.5.1");
|
Logger.error("This codebase requires >= MagicBox v1.5.2");
|
||||||
Logger.error("docker pull magicbane/magicbox:latest");
|
Logger.error("docker pull magicbane/magicbox:latest");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user