Skip to content

Commit d6af01e

Browse files
committed
fixes AT issues (#188 & #193)
1 parent 88647cb commit d6af01e

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

Forge/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ val curseProjectId: String by extra
1212
val modrinthProjectId: String by extra
1313
val forgeVersion: String by extra
1414
val minecraftVersion: String by extra
15+
val modId: String by extra
1516
val modFileName: String by extra
1617
val modJavaVersion: String by extra
1718

@@ -72,6 +73,7 @@ tasks.withType<Jar> {
7273
}
7374

7475
tasks.withType<net.fabricmc.loom.task.RemapJarTask> {
76+
atAccessWideners.add("${modId}.accesswidener")
7577
destinationDirectory.set(file(rootProject.rootDir.path + "/output"))
7678
}
7779

NeoForge/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ tasks.withType<Jar> {
7272
}
7373

7474
tasks.withType<net.fabricmc.loom.task.RemapJarTask> {
75+
atAccessWideners.add("${modId}.accesswidener")
7576
destinationDirectory.set(file(rootProject.rootDir.path + "/output"))
7677
}
7778

gradle.properties

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,32 @@ minecraftVersion=1.21.4
1919
minecraftVersionRange=[1.21.4, 1.22)
2020

2121
# Forge
22-
forgeVersion= 54.0.6
22+
forgeVersion=54.0.26
2323
loaderVersionRange=[54,)
2424
forgeVersionRange=[54.0.0,)
2525

2626
# Fabric
27-
fabricVersion=0.112.0+1.21.4
28-
fabricLoaderVersion=0.16.9
27+
fabricVersion=0.115.1+1.21.4
28+
fabricLoaderVersion=0.16.10
2929

3030
# NeoForge
31-
neoforgeVersion=21.4.27-beta
31+
neoforgeVersion=21.4.87-beta
3232
neoforgeLoaderVersionRange=[4,)
3333
neoforgeVersionRange=[21.4.0,)
3434

3535
# Fabric Config screen
3636
clothVersion=17.0.144
37-
modMenuVersion=13.0.0-beta.1
37+
modMenuVersion=13.0.1
3838

3939
# Mappings
4040
mappingsChannel=parchment
4141
mappingsParchmentMinecraftVersion=1.21.4
42-
mappingsParchmentVersion=2024.12.07
42+
mappingsParchmentVersion=2025.01.19
4343

4444
# Publishing
4545
curseProjectId=272515
4646
curseHomepageLink=https://www.curseforge.com/minecraft/mc-mods/better-advancements
4747
modrinthProjectId=Q2OqKxDG
4848

4949
# Version
50-
specificationVersion=0.4.4
50+
specificationVersion=0.4.5

0 commit comments

Comments
 (0)