diff options
-rw-r--r-- | changelogs/3.3.2+1.20.4.md | 1 | ||||
-rw-r--r-- | neoforge/build.gradle.kts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changelogs/3.3.2+1.20.4.md b/changelogs/3.3.2+1.20.4.md index cd31b2c..dfec1b7 100644 --- a/changelogs/3.3.2+1.20.4.md +++ b/changelogs/3.3.2+1.20.4.md @@ -3,3 +3,4 @@ - Hook into the resource reloader to preload any webp/gif files that are used. This should make loading images when opening GUIs appear instantaneous. - Fix issue where buttons got stuck and appeared as though nothing had saved. +- Fix an issue on NeoForged where the access widener was not transformed to an access transformer. diff --git a/neoforge/build.gradle.kts b/neoforge/build.gradle.kts index 47d672f..f8086b2 100644 --- a/neoforge/build.gradle.kts +++ b/neoforge/build.gradle.kts @@ -98,6 +98,7 @@ tasks { inputFile.set(shadowJar.get().archiveFile) dependsOn(shadowJar) archiveClassifier.set(null as String?) + atAccessWideners.set(listOf("yacl.accesswidener")) from(rootProject.file("LICENSE")) } |