Trying to make a 1.14 mod, got an error: non-unique class target name mappings #2208
Answered
by
modmuss50
u9g
asked this question in
Mod Dev Support
-
gradle.properties:
Error: How can I fix this? |
Beta Was this translation helpful? Give feedback.
Answered by
modmuss50
May 10, 2022
Replies: 1 comment 3 replies
-
In your build.gradle make sure its not using the
Should become:
|
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
u9g
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In your build.gradle make sure its not using the
:v2
mappings. There is a bug with the retro generated v2 mappings for 1.14 causing them to not work as expected.mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
Should become:
mappings "net.fabricmc:yarn:${project.yarn_mappings}"