Skip to content

Commit ae5db53

Browse files
committed
1.17
1 parent 1acd928 commit ae5db53

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ dependencies {
4343
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
4444
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
4545

46-
modImplementation 'net.earthcomputer.multiconnect:multiconnect-api:1.3.36'
47-
include 'net.earthcomputer.multiconnect:multiconnect-api:1.3.36'
46+
modImplementation 'net.earthcomputer.multiconnect:multiconnect-api:1.4'
47+
include 'net.earthcomputer.multiconnect:multiconnect-api:1.4'
4848

4949
if (clientcommandsScriptingExists) {
5050
include("net.earthcomputer.clientcommands:clientcommands-scripting:${project.scripting_version}") {

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ org.gradle.jvmargs=-Xmx6G
33

44
# Fabric Properties
55
# check these on https://modmuss50.me/fabric.html
6-
minecraft_version=1.17-rc2
7-
yarn_mappings=1.17-rc2+build.10
6+
minecraft_version=1.17
7+
yarn_mappings=1.17+build.1
88
loader_version=0.11.3
99

1010
# Mod Properties
11-
mod_version = 2.4.11
11+
mod_version = 2.5
1212
maven_group = net.earthcomputer
1313
archives_base_name = clientcommands
1414

1515
# Dependencies
1616
# also check this on https://modmuss50.me/fabric.html
1717
fabric_version=0.34.9+1.17
1818

19-
scripting_version=1.0
19+
scripting_version=1.1

src/main/java/net/earthcomputer/clientcommands/features/PlayerRandCracker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public static void onMending() {
188188
}
189189

190190
public static void onXpOrb() {
191-
if (MultiConnectAPI.instance().getProtocolVersion() > Protocols.V1_16_4) {
191+
if (MultiConnectAPI.instance().getProtocolVersion() >= Protocols.V1_17) {
192192
// TODO: is there a way to be smarter about this?
193193
resetCracker("xp");
194194
}

0 commit comments

Comments
 (0)