Skip to content

Commit

Permalink
v1.2.1 for mc1.19.3-1.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
breelock committed Aug 29, 2024
1 parent 77c67ae commit 1d812a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ 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
maven_group=com.breelock.autoclicky
archives_base_name=autoclicky

# Fabric API
fabric_version=0.87.2+1.19.4
fabric_version=0.76.1+1.19.3
4 changes: 2 additions & 2 deletions src/main/java/com/breelock/autoclicky/pages/OldCombat.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"depends": {
"fabricloader": ">=0.15.11",
"minecraft": "1.19.4",
"minecraft": ">=1.19.3 <=1.19.4",
"java": ">=8",
"fabric": "*"
},
Expand Down

0 comments on commit 1d812a2

Please sign in to comment.