Skip to content

Commit

Permalink
Fix what I broke
Browse files Browse the repository at this point in the history
  • Loading branch information
makamys committed Oct 19, 2023
1 parent 24f6c06 commit 27e3058
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions module-all/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,7 @@ jar.dependsOn sourcesJar
clean {
moduleNames.each { dependsOn tasks.getByPath(":$it:clean") }
}

tasks.injectTags.configure {
outputClassName.set("io.github.legacymoddingmc.unimixins.all.Tags")
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* This is only here so unimixins shows up in the mod list GUI as a single mod.
*/
@Mod(modid = "unimixins", version = "@VERSION@", acceptableRemoteVersions = "*")
@net.minecraftforge.fml.common.Mod(modid = "unimixins", version = "@VERSION@", acceptableRemoteVersions = "*")
@Mod(modid = "unimixins", version = Tags.VERSION, acceptableRemoteVersions = "*")
@net.minecraftforge.fml.common.Mod(modid = "unimixins", version = Tags.VERSION, acceptableRemoteVersions = "*")
public class AllModule {
}
2 changes: 2 additions & 0 deletions module-mixingasm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jar {
ext.uniVersion = version
version += "+" + ext.extraVersion

minecraft.injectedTags.put("VERSION", extraVersion)

tasks.injectTags.configure {
outputClassName.set("io.github.legacymoddingmc.unimixins.mixingasm.Tags")
}

0 comments on commit 27e3058

Please sign in to comment.