diff options
author | Torui <44932079+ToruiDev@users.noreply.github.com> | 2022-05-21 16:11:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-21 16:11:01 +0200 |
commit | b9b1294882b68e2d85aec0c1d28570f5d68359b9 (patch) | |
tree | 599b996aa7844a4bc9d989d75f879c5a065e6c55 /src/main/java/de/torui/coflsky/CoflSky.java | |
parent | 4a85bf6754c101b43d2d0d3a6c9ed5744dd0308d (diff) | |
download | COFL-b9b1294882b68e2d85aec0c1d28570f5d68359b9.tar.gz COFL-b9b1294882b68e2d85aec0c1d28570f5d68359b9.tar.bz2 COFL-b9b1294882b68e2d85aec0c1d28570f5d68359b9.zip |
initial implementation (#38)
* rewrite everything
* Add replace and insert methods for tooltips
* Add sleep bcz hypixel doesnt want a prefilled chest
* Commit requested changes
* Fix messed up item stacks for stackables
* Move handlers to handlers package
* Empty hashmap on gui close
* merge conflixt fix
* Fix index out of bound exception
* Fix bcz forge
* fix messed slot assigns when there is empoty inventory slot
* Make tooltips respect mod settings
* Fix typo
* save tab contents
* optimise description loading & fix tab
Co-authored-by: HackedOS <63157139+HackedOS@users.noreply.github.com>
Co-authored-by: Äkwav <xekwavx@gmail.com>
Diffstat (limited to 'src/main/java/de/torui/coflsky/CoflSky.java')
-rw-r--r-- | src/main/java/de/torui/coflsky/CoflSky.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/de/torui/coflsky/CoflSky.java b/src/main/java/de/torui/coflsky/CoflSky.java index 7ecccf0..9811ec7 100644 --- a/src/main/java/de/torui/coflsky/CoflSky.java +++ b/src/main/java/de/torui/coflsky/CoflSky.java @@ -10,6 +10,7 @@ import java.nio.file.Paths; import com.google.gson.Gson; import de.torui.coflsky.configuration.LocalConfig; +import de.torui.coflsky.handlers.EventRegistry; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import org.lwjgl.input.Keyboard; @@ -44,7 +45,7 @@ public class CoflSky "ws://sky-mod.coflnet.com/modsocket", }; - public static String CommandUri = "https://sky-commands.coflnet.com/api/mod/commands"; + public static String CommandUri = "https://sky.coflnet.com/api/mod/commands"; @EventHandler public void preInit(FMLPreInitializationEvent event) { String configString = null; |