diff options
author | Torui <44932079+ToruiDev@users.noreply.github.com> | 2022-05-08 13:05:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-08 13:05:09 +0200 |
commit | a7d7277bfa5274c816b93e4493447989c3d562da (patch) | |
tree | c61821e43af07ad31b166b2cac797471d21548f4 /src/main/java/de/torui/coflsky/CoflSky.java | |
parent | 176abc9c9ab1004e99417b11e91d6c3f21bd7f69 (diff) | |
download | COFL-a7d7277bfa5274c816b93e4493447989c3d562da.tar.gz COFL-a7d7277bfa5274c816b93e4493447989c3d562da.tar.bz2 COFL-a7d7277bfa5274c816b93e4493447989c3d562da.zip |
Feature/configuration (#59)
* initial commit of configuration management
* Updated Configuration Options
* Review Feedback, IntelliJ was angry about TimerCountdown.java import
Co-authored-by: Florian Rinke <florian@torui.de>
Diffstat (limited to 'src/main/java/de/torui/coflsky/CoflSky.java')
-rw-r--r-- | src/main/java/de/torui/coflsky/CoflSky.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/de/torui/coflsky/CoflSky.java b/src/main/java/de/torui/coflsky/CoflSky.java index 4a48958..6e7fde7 100644 --- a/src/main/java/de/torui/coflsky/CoflSky.java +++ b/src/main/java/de/torui/coflsky/CoflSky.java @@ -6,6 +6,7 @@ import java.net.URISyntaxException; import org.lwjgl.input.Keyboard; +import de.torui.coflsky.configuration.ConfigurationManager; import de.torui.coflsky.network.WSClientWrapper; import net.minecraft.client.settings.KeyBinding; import net.minecraftforge.client.ClientCommandHandler; @@ -20,7 +21,7 @@ import net.minecraftforge.fml.relauncher.Side; public class CoflSky { public static final String MODID = "CoflSky"; - public static final String VERSION = "1.3.3-Alpha"; + public static final String VERSION = "1.4-Alpha"; public static WSClientWrapper Wrapper; public static KeyBinding[] keyBindings; @@ -39,7 +40,6 @@ public class CoflSky @EventHandler public void init(FMLInitializationEvent event) throws URISyntaxException { - System.out.println(">>>Started"); CoflSky.Wrapper = new WSClientWrapper(webSocketURIPrefix); |