Skip to content

Commit

Permalink
Fix contact information
Browse files Browse the repository at this point in the history
  • Loading branch information
Gamebuster19901 committed Aug 8, 2024
1 parent 053a219 commit f27717d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ public Collection<BuiltinMod> getBuiltinMods() {
HashMap<String, String> wildermythContactInformation = new HashMap<>();
wildermythContactInformation.put("homepage", "https://wildermyth.com/");
wildermythContactInformation.put("issues", "https://discord.gg/wildermyth");
wildermythContactInformation.put("license", "https://wildermyth.com/terms.php");

HashMap<String, String> asmContactInformation = new HashMap<>();
asmContactInformation.put("homepage", "https://asm.ow2.io/index.html");
Expand Down Expand Up @@ -127,9 +128,10 @@ public Collection<BuiltinMod> getBuiltinMods() {
BuiltinModMetadata.Builder mixinMetaData =
new BuiltinModMetadata.Builder("mixin", MixinBootstrap.VERSION)
.setName("Spongepowered Mixin (Fabric Fork)")
.addAuthor("FabricMC", fabricMixinContactInformation)
.addAuthor("Mumfrey", mixinContactInformation)
.setContact(new ContactInformationImpl(mixinContactInformation))
.addAuthor("FabricMC Team", fabricMixinContactInformation)
.addAuthor("Spongepowered Team", mixinContactInformation)
.setContact(new ContactInformationImpl(fabricMixinContactInformation))
.setDescription("""
FabricMC's fork of Mixin, A bytecode weaving framework for Java using ASM.
Expand Down

0 comments on commit f27717d

Please sign in to comment.