diff --git a/gradle.properties b/gradle.properties index 2854f08..cf517c3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,9 +4,9 @@ org.gradle.parallel=true # Fabric Properties # check these on https://fabricmc.net/develop -minecraft_version=1.19.4 -yarn_mappings=1.19.4+build.2 -loader_version=0.16.2 +minecraft_version=1.19.3 +yarn_mappings=1.19.3+build.5 +loader_version=0.16.3 # Mod Properties mod_version=1.2.1 @@ -14,4 +14,4 @@ maven_group=com.breelock.autoclicky archives_base_name=autoclicky # Fabric API -fabric_version=0.87.2+1.19.4 \ No newline at end of file +fabric_version=0.76.1+1.19.3 \ No newline at end of file diff --git a/src/main/java/com/breelock/autoclicky/pages/OldCombat.java b/src/main/java/com/breelock/autoclicky/pages/OldCombat.java index 4c3ba46..a1948e3 100644 --- a/src/main/java/com/breelock/autoclicky/pages/OldCombat.java +++ b/src/main/java/com/breelock/autoclicky/pages/OldCombat.java @@ -138,8 +138,8 @@ public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) { this.renderBackground(matrices); // Draw title - drawCenteredTextWithShadow(matrices, this.textRenderer, this.title, this.width / 2, this.height / 4 - 50, 16777215); - drawCenteredTextWithShadow(matrices, this.textRenderer, Text.literal("by breelock").formatted(Formatting.GRAY), this.width / 2, this.height / 4 - 50 + 10, 16777215); + drawCenteredTextWithShadow(matrices, this.textRenderer, this.title.asOrderedText(), this.width / 2, this.height / 4 - 50, 16777215); + drawCenteredTextWithShadow(matrices, this.textRenderer, Text.literal("by breelock").formatted(Formatting.GRAY).asOrderedText(), this.width / 2, this.height / 4 - 50 + 10, 16777215); // Draw labels this.textRenderer.draw(matrices, Text.literal(Text.translatable("gui.autoclicky.leftBind").getString()), (float) this.width / 2 - 95 - 10f / 2 + 2, (float) this.height / 4 + 10, 16777215); diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 6d31f94..6af32a3 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -20,7 +20,7 @@ }, "depends": { "fabricloader": ">=0.15.11", - "minecraft": "1.19.4", + "minecraft": ">=1.19.3 <=1.19.4", "java": ">=8", "fabric": "*" },