Skip to content

Commit

Permalink
Update to Minecraft 1.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
YaLTeR committed Mar 16, 2023
1 parent 3d02fcf commit b0068af
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build-fabric.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'fabric-loom' version '1.0-SNAPSHOT'
}

def minecraftVersion = "1.19.3" // Used for output JAR filenames.
def minecraftVersion = "1.19.4" // Used for output JAR filenames.

version = project.mod_version
group = "yalter.mousetweaks"
Expand Down Expand Up @@ -35,10 +35,10 @@ loom {
dependencies {
minecraft "com.mojang:minecraft:${minecraftVersion}"
mappings loom.officialMojangMappings()
modImplementation "net.fabricmc:fabric-loader:0.14.11"
modImplementation "net.fabricmc.fabric-api:fabric-api:0.68.1+1.19.3"
modImplementation "net.fabricmc:fabric-loader:0.14.17"
modImplementation "net.fabricmc.fabric-api:fabric-api:0.75.3+1.19.4"

modImplementation 'com.terraformersmc:modmenu:5.0.2'
modImplementation 'com.terraformersmc:modmenu:6.1.0-rc.1'
}

processResources {
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.spongepowered.mixin'

def minecraftVersion = "1.19.3" // Used for output JAR filenames.
def minecraftVersion = "1.19.4" // Used for output JAR filenames.

version = project.mod_version
group = "yalter.mousetweaks"
Expand All @@ -38,7 +38,7 @@ mixin {
}

minecraft {
mappings channel: 'official', version: '1.19.3'
mappings channel: 'official', version: '1.19.4'

runs {
client {
Expand Down Expand Up @@ -70,7 +70,7 @@ minecraft {
}

dependencies {
minecraft 'net.minecraftforge:forge:1.19.3-44.0.37'
minecraft 'net.minecraftforge:forge:1.19.4-45.0.6'
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/yalter/mousetweaks/ConfigScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void onClose() {

@Override
public void render(PoseStack poseStack, int i, int j, float f) {
this.renderDirtBackground(0);
this.renderDirtBackground(poseStack);
drawCenteredString(poseStack, this.font, this.title, this.width / 2, 15, 0xFFFFFF);
super.render(poseStack, i, j, f);
}
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
"mousetweaks-fabric.mixins.json"
],
"depends": {
"fabricloader": ">=0.14.11",
"fabricloader": ">=0.14.17",
"fabric": "*",
"minecraft": "~1.19.3",
"minecraft": "~1.19.4",
"java": ">=17"
},
"suggests": {}
Expand Down

0 comments on commit b0068af

Please sign in to comment.