diff options
author | isXander <xandersmith2008@gmail.com> | 2024-01-19 17:17:58 +0000 |
---|---|---|
committer | isXander <xandersmith2008@gmail.com> | 2024-01-19 17:17:58 +0000 |
commit | cb8a5499a60e319a01ccde735f78717eeeb9b92c (patch) | |
tree | 593ee7f707240be28d67124e3b39112daeb4f2df | |
parent | 03a48a84741ff663b1afbfe26e826831a13dd303 (diff) | |
download | YetAnotherConfigLib-cb8a5499a60e319a01ccde735f78717eeeb9b92c.tar.gz YetAnotherConfigLib-cb8a5499a60e319a01ccde735f78717eeeb9b92c.tar.bz2 YetAnotherConfigLib-cb8a5499a60e319a01ccde735f78717eeeb9b92c.zip |
Fix access widener not getting converted to AT
-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")) } |