Start work on Auto-Welcome module. NOTE: 20% does NOT mean 20% of the features work. It means I estimate I am 20% done with this module.

This commit is contained in:
desyncfy
2024-06-08 14:16:08 -07:00
parent c81cce7a5b
commit 6908fa9e28
3 changed files with 14 additions and 3 deletions

View File

@@ -8,11 +8,11 @@ import net.minecraft.client.option.KeyBinding
import net.minecraft.client.util.InputUtil
import net.minecraft.text.Text
import org.lwjgl.glfw.GLFW
import chickenmanfy.scify.Modules.autowelcome
object SciFyClient : ClientModInitializer {
override fun onInitializeClient() {
val menu = KeyBindingHelper.registerKeyBinding(
KeyBinding(
"Menu",
@@ -28,5 +28,6 @@ object SciFyClient : ClientModInitializer {
}
})
autowelcome()
}
}