diff --git a/gradle.properties b/gradle.properties index 14b659e..bd8f57f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,7 +14,7 @@ loader_version=0.15.11 fabric_kotlin_version=1.11.0+kotlin.2.0.0 # Mod Properties -mod_version=0.2.11 +mod_version=0.2.12 maven_group=chickenmanfy.scify archives_base_name=scify diff --git a/src/client/kotlin/chickenmanfy/scify/modules/Hotkey.kt b/src/client/kotlin/chickenmanfy/scify/modules/Hotkey.kt index 3accbf6..bbeea29 100644 --- a/src/client/kotlin/chickenmanfy/scify/modules/Hotkey.kt +++ b/src/client/kotlin/chickenmanfy/scify/modules/Hotkey.kt @@ -47,15 +47,6 @@ class Hotkey { ) ) - // Debug - val debug = KeyBindingHelper.registerKeyBinding( - KeyBinding( - "Debug", - InputUtil.Type.KEYSYM, - GLFW.GLFW_KEY_MINUS, - "SciFy" - ) - ) ClientTickEvents.END_CLIENT_TICK.register(ClientTickEvents.EndTick { while (warp.wasPressed()) { if (MinecraftClient.getInstance().networkHandler?.serverInfo?.address == "dungeonfy.minehut.gg" || @@ -89,12 +80,6 @@ class Hotkey { while (menu.wasPressed()) { MinecraftClient.getInstance().setScreen(Menu()) } - while (debug.wasPressed()) { - println(MinecraftClient.getInstance().networkHandler?.serverInfo?.address) - println(MinecraftClient.getInstance().player?.name?.string) - MinecraftClient.getInstance().player?.networkHandler?.sendChatMessage("wb") - } - }) } diff --git a/src/client/kotlin/chickenmanfy/scify/modules/Watermark.kt b/src/client/kotlin/chickenmanfy/scify/modules/Watermark.kt index 67b4b7d..8ade9c2 100644 --- a/src/client/kotlin/chickenmanfy/scify/modules/Watermark.kt +++ b/src/client/kotlin/chickenmanfy/scify/modules/Watermark.kt @@ -19,7 +19,7 @@ class Watermark { modDisableOverride) { if (watermarkToggle) { val minecraftClient = MinecraftClient.getInstance() - val scifyVersion = "0.2.11" + val scifyVersion = "0.2.12" drawContext?.drawTextWithShadow(minecraftClient.textRenderer,"§nSciFy v${scifyVersion}",minecraftClient.window.scaledWidth - minecraftClient.textRenderer.getWidth("SciFy v${scifyVersion}") - 5, minecraftClient.window.scaledHeight - minecraftClient.textRenderer.fontHeight - 5, 0xff00ff) } }