Skip to content

Commit

Permalink
Merge branch '1.19.4' into fix-libs
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamCalculator authored Mar 17, 2024
2 parents 55cc1a9 + 80b9844 commit 8eed01c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies {
include "net.lingala.zip4j:zip4j:2.11.5"


modApi "com.terraformersmc:modmenu:7.2.2"
modApi "com.terraformersmc:modmenu:6.3.1"

// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
Expand Down
1 change: 1 addition & 0 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
group = "com.adamcalculator"
version = "1.0.7"


repositories {
mavenCentral()
}
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ org.gradle.parallel=true

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.10
minecraft_version=1.19.4
yarn_mappings=1.19.4+build.2
loader_version=0.15.7

#Fabric api
fabric_version=0.92.0+1.20.1
fabric_version=0.87.2+1.19.4

# Mod Properties
mod_version=1.0.7-mc1.19.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import com.adamcalculator.dynamicpack.pack.Pack;
import com.adamcalculator.dynamicpack.util.Out;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.DrawContext;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.gui.widget.ButtonWidget;
import net.minecraft.client.toast.SystemToast;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.Text;

public class DebugScreen extends Screen {
Expand All @@ -15,9 +15,9 @@ protected DebugScreen() {
}

@Override
public void render(DrawContext context, int mouseX, int mouseY, float delta) {
renderBackground(context);
super.render(context, mouseX, mouseY, delta);
public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
renderBackground(matrices);
super.render(matrices, mouseX, mouseY, delta);
}

@Override
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 @@ -31,7 +31,7 @@
],
"depends": {
"fabricloader": ">=0.14.0",
"minecraft": ">=1.20.1",
"minecraft": "~1.19.4",
"java": ">=17"
}
}

0 comments on commit 8eed01c

Please sign in to comment.