Skip to content

Commit

Permalink
Merge pull request #5 from fantahund/1.18
Browse files Browse the repository at this point in the history
Update to 1.18
  • Loading branch information
ZiiMs authored Dec 31, 2021
2 parents 7ae593a + 04979f3 commit 3e3fa73
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '0.8-SNAPSHOT'
id 'fabric-loom' version '0.10-SNAPSHOT'
id 'maven-publish'
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.17
yarn_mappings=1.17+build.1
loader_version=0.11.3
minecraft_version=1.18.1
yarn_mappings=1.18.1+build.14
loader_version=0.12.12
# Mod Properties
mod_version=0.3
maven_group=me.ziim.ziimhud
archives_base_name=ziimhud
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.34.9+1.17
fabric_version=0.45.0+1.18
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion src/main/java/me/ziim/ziimhud/modules/openConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void KeyPressEvent(OnKeyPressEvent e) {
if (InputUtil.isKeyPressed(MinecraftClient.getInstance().getWindow().getHandle(), GLFW.GLFW_KEY_F3)) return;
if (e.key == GLFW.GLFW_KEY_P && Ziimhud.mc.currentScreen == null) {
MoveScreen abstactWindow = new MoveScreen();
MinecraftClient.getInstance().openScreen(abstactWindow);
MinecraftClient.getInstance().setScreen(abstactWindow);
}
}
}
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"depends": {
"fabricloader": ">=0.11.3",
"fabric": "*",
"minecraft": "1.17.x",
"minecraft": "1.18.x",
"java": ">=16"
}
}

0 comments on commit 3e3fa73

Please sign in to comment.