Skip to content

Commit

Permalink
Add support for 1.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DissiNL committed Dec 12, 2022
1 parent aa182ee commit 25bfb93
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/versions.html
minecraft_version=1.19
yarn_mappings=1.19+build.1
loader_version=0.14.7
minecraft_version=1.19.2
yarn_mappings=1.19.2+build.28
loader_version=0.14.11

# Mod Properties
mod_version = 1.0.2
mod_version = 1.0.3
maven_group = com.quarrymod
archives_base_name = quarry-reborn-1.19.0
archives_base_name = quarry-reborn-1.19.2

# Dependencies
fabric_version=0.57.0+1.19
fabric_version=0.69.0+1.19.2
# Can be found on https://github.com/TechReborn/TechReborn/releases
tr_version=1.19:5.3.2
rc_version=1.19:5.3.2
tr_version=1.19:5.3.4
rc_version=1.19:5.3.4
4 changes: 2 additions & 2 deletions src/main/java/net/quarrymod/client/gui/QuarryScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import reborncore.client.gui.builder.GuiBase;
import reborncore.client.gui.builder.widget.GuiButtonExtended;
import reborncore.client.gui.guibuilder.GuiBuilder;
import reborncore.common.network.NetworkManager;
import reborncore.client.ClientNetworkManager;
import reborncore.common.screen.BuiltScreenHandler;

public class QuarryScreen extends GuiBase<BuiltScreenHandler> {
Expand Down Expand Up @@ -96,7 +96,7 @@ protected void drawForeground(MatrixStack matrixStack, final int mouseX, final i
}

public void changeMineAll(boolean mineAll) {
NetworkManager.sendToServer(QuarryManagerServerPacket.createPacketQuarryMineAll(blockEntity, mineAll));
ClientNetworkManager.sendToServer(QuarryManagerServerPacket.createPacketQuarryMineAll(blockEntity, mineAll));
}

@Override
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
"mixins": [
],
"depends": {
"fabricloader": ">=0.14.7",
"fabricloader": ">=0.14.9",
"fabric": "*",
"minecraft": "1.19.x",
"minecraft": "1.19.2",
"java": ">=17",
"techreborn": ">=5.3.2"
"techreborn": ">=5.3.4"
},
"suggests": {
"another-mod": "*"
Expand Down

0 comments on commit 25bfb93

Please sign in to comment.