Skip to content

Commit

Permalink
Merge pull request #89 from lightumcc/master
Browse files Browse the repository at this point in the history
update 1.21
  • Loading branch information
james58899 authored Jun 14, 2024
2 parents c9f8c6c + 9d0d3cd commit 822473d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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://fabricmc.net/develop/
minecraft_version=1.20.5
yarn_mappings=1.20.5+build.1
loader_version=0.15.10
minecraft_version=1.21
yarn_mappings=1.21+build.1
loader_version=0.15.11
# Mod Properties
mod_version=2.8.0
maven_group=one.oktw
archives_base_name=FabricProxy-Lite
# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
fabric_version=0.97.5+1.20.5
fabric_version=0.100.1+1.21
2 changes: 1 addition & 1 deletion src/main/java/one/oktw/VelocityLib.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import static java.util.Arrays.binarySearch;

public class VelocityLib {
public static final Identifier PLAYER_INFO_CHANNEL = new Identifier("velocity", "player_info");
public static final Identifier PLAYER_INFO_CHANNEL = Identifier.of("velocity", "player_info");
public static final int MODERN_FORWARDING_DEFAULT = 1;
public static final int MODERN_FORWARDING_WITH_KEY = 2;
public static final int MODERN_FORWARDING_WITH_KEY_V2 = 3;
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 @@ -23,9 +23,9 @@
"hack.mixins.json"
],
"depends": {
"fabricloader": ">=0.15.10",
"fabricloader": ">=0.15.11",
"fabric-networking-api-v1": "*",
"minecraft": ">=1.20.5",
"minecraft": ">=1.21",
"java": ">=21"
}
}

0 comments on commit 822473d

Please sign in to comment.