diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-04-13 18:12:27 +0300 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-04-13 18:12:27 +0300 |
| commit | f965cf88704f1e5e674d98308cbe0f4451d7edeb (patch) | |
| tree | 037091498442b0e589166c02d4342cbb7828dca4 /common/darkknight/jewelrycraft/JewelrycraftMod.java | |
| parent | dbe39cf7e6ddc6c6fd1e639b495a8ac568e081a9 (diff) | |
Fixed stuff
Diffstat (limited to 'common/darkknight/jewelrycraft/JewelrycraftMod.java')
| -rw-r--r-- | common/darkknight/jewelrycraft/JewelrycraftMod.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/common/darkknight/jewelrycraft/JewelrycraftMod.java b/common/darkknight/jewelrycraft/JewelrycraftMod.java index 0b794d7..6f405ad 100644 --- a/common/darkknight/jewelrycraft/JewelrycraftMod.java +++ b/common/darkknight/jewelrycraft/JewelrycraftMod.java @@ -6,6 +6,8 @@ package darkknight.jewelrycraft; +import java.util.ArrayList; +import java.util.List; import java.util.logging.Logger; import net.minecraft.creativetab.CreativeTabs; @@ -102,6 +104,16 @@ public class JewelrycraftMod implements IConnectionHandler MinecraftForge.EVENT_BUS.register(new EntityEventHandler()); proxy.registerRenderers(); + + ModMetadata metadata = e.getModMetadata(); + + List<String> authorList = new ArrayList<String>(); + authorList.add("DarkKnight (or sor1n)"); + authorList.add("bspkrs"); + + metadata.autogenerated = false; + metadata.authorList = authorList; + metadata.url = "https://github.com/sor1n/Modjam-Mod"; } @EventHandler |
