Skip to content

Commit 800cfb2

Browse files
committed
Add support for 1.21.11
1 parent efa84e8 commit 800cfb2

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

api/src/main/java/com/convallyria/forcepack/api/resourcepack/PackFormatResolver.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ public final class PackFormatResolver {
44

55
public static double getPackFormat(int protocol) {
66
switch (protocol) {
7+
case 774: // 1.21.11
8+
return 75;
79
case 773: // 1.21.9-1.21.10
810
return 69;
911
case 772: // 1.21.7-1.21.8

combined/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ modrinth {
3434
"1.18", "1.18.1", "1.18.2",
3535
"1.19", "1.19.1", "1.19.2", "1.19.3", "1.19.4",
3636
"1.20", "1.20.1", "1.20.2", "1.20.3", "1.20.4", "1.20.5", "1.20.6",
37-
"1.21", "1.21.1", "1.21.2", "1.21.3", "1.21.4", "1.21.5", "1.21.6", "1.21.7", "1.21.8", "1.21.9", "1.21.10")
37+
"1.21", "1.21.1", "1.21.2", "1.21.3", "1.21.4", "1.21.5", "1.21.6", "1.21.7", "1.21.8", "1.21.9", "1.21.10", "1.21.11")
3838
loaders.addAll("bukkit", "folia", "paper", "velocity")
3939
}

paper/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies {
4040
implementation(project(":folia"))
4141
implementation(project(":webserver", "shadow"))
4242

43-
compileOnly("io.papermc.paper:paper-api:1.21.10-R0.1-SNAPSHOT") {
43+
compileOnly("io.papermc.paper:paper-api:1.21.11-R0.1-SNAPSHOT") {
4444
exclude("net.kyori") // avoid conflicts
4545
}
4646
compileOnly("com.viaversion:viaversion-api:4.9.2")

sponge/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ tasks {
7474
modrinth {
7575
uploadFile.set(tasks.shadowJar)
7676
versionName.set(versionName.get() + " - Sponge")
77-
gameVersions.addAll("1.21.8", "1.21.9", "1.21.10") // Must be an array, even with only one version
77+
gameVersions.addAll("1.21.8", "1.21.9", "1.21.10", "1.21.11") // Must be an array, even with only one version
7878
loaders.addAll("sponge") // Must also be an array - no need to specify this if you're using Loom or ForgeGradle
7979
}

0 commit comments

Comments
 (0)