Skip to content

Commit bf2bf6c

Browse files
committed
Add support for 1.21.7/8 NeoForge
1 parent d18e1b3 commit bf2bf6c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repositories {
1212

1313
dependencies {
1414
implementation("com.google.code.gson:gson:2.11.0")
15-
implementation("gg.essential:essential-gradle-toolkit:0.6.7")
15+
implementation("gg.essential:essential-gradle-toolkit:0.6.10")
1616
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23")
1717
implementation("gg.essential:architectury-loom:1.7.35")
1818
}

root.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ preprocess {
66
strictExtraMappings.set(true)
77

88
val fabric12109 = createNode("1.21.9-fabric", 12109, "yarn")
9+
val neoForge12108 = createNode("1.21.8-neoforge", 12108, "srg")
910
val fabric12108 = createNode("1.21.8-fabric", 12108, "yarn")
11+
val neoForge12107 = createNode("1.21.7-neoforge", 12107, "srg")
1012
val fabric12107 = createNode("1.21.7-fabric", 12107, "yarn")
1113
val fabric12106 = createNode("1.21.6-fabric", 12106, "yarn")
1214
val neoForge12105 = createNode("1.21.5-neoforge", 12105, "srg")
@@ -50,7 +52,9 @@ preprocess {
5052
val forge10809 = createNode("1.8.9-forge", 10809, "srg")
5153

5254
fabric12109.link(fabric12108)
55+
neoForge12108.link(fabric12108)
5356
fabric12108.link(fabric12107)
57+
neoForge12107.link(fabric12107)
5458
fabric12107.link(fabric12106)
5559
fabric12106.link(fabric12105, file("versions/1.21.6-1.21.5.txt"))
5660
neoForge12105.link(fabric12105)

settings.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pluginManagement {
88
maven("https://maven.minecraftforge.net")
99
}
1010
plugins {
11-
id("gg.essential.multi-version.root") version "0.6.4"
11+
id("gg.essential.multi-version.root") version "0.6.10"
1212
}
1313
}
1414

@@ -58,7 +58,9 @@ listOf(
5858
"1.21.5-neoforge",
5959
"1.21.6-fabric",
6060
"1.21.7-fabric",
61+
"1.21.7-neoforge",
6162
"1.21.8-fabric",
63+
"1.21.8-neoforge",
6264
"1.21.9-fabric",
6365
).forEach { version ->
6466
include(":$version")

src/main/java/gg/essential/partnermod/EssentialPartner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public class EssentialPartner {
8585

8686
private static final Set<String> NEOFORGE_SUPPORTED_VERSIONS = new HashSet<>(Arrays.asList(
8787
"1.20.4", "1.20.6",
88-
"1.21.1", "1.21.3", "1.21.4", "1.21.5"
88+
"1.21.1", "1.21.3", "1.21.4", "1.21.5", "1.21.7", "1.21.8"
8989
));
9090

9191
private static final Set<String> FORGE_SUPPORTED_VERSIONS = new HashSet<>(Arrays.asList(

0 commit comments

Comments
 (0)