Updated to 1.19.2

This commit is contained in:
Jonas_Jones 2022-08-26 19:55:31 +02:00
parent 42c98121f9
commit 3896d5daa0
6 changed files with 10 additions and 49 deletions

View file

@ -17,13 +17,11 @@ public class ConsoleMC implements ModInitializer {
//find out if operating system is windows
public static boolean ISWINDOWS = System.getProperty("os.name").toLowerCase().startsWith("windows");
public static String OS = System.getProperty("os.name");
@Override
public void onInitialize() {
ModConfigs.registerConfigs();
//ModConfigs.registerConfigs();
registerCommands();
LOGGER.info("ConsoleMC initialized!");
LOGGER.info("Server running on " + OS);
}
}