diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2015-04-25 03:55:10 +0100 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2015-04-25 03:55:10 +0100 |
| commit | e1ea6bd5f28f0c6bdecdfb7cf6bc5eb8f6dc6e2d (patch) | |
| tree | 7a9d79d91a2cdc89674d7951e44433c78605a863 /src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java | |
| parent | d068bd87a35accd3112c48717751438f0185242f (diff) | |
Testing stuff with builds
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java')
| -rw-r--r-- | src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java b/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java index 6f04bd6..a1c6227 100644 --- a/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java +++ b/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java @@ -36,14 +36,14 @@ import darkknight.jewelrycraft.recipes.CraftingRecipes; import darkknight.jewelrycraft.util.Variables; import darkknight.jewelrycraft.worldGen.village.VillageHandler; -@Mod (modid = Variables.MODID, name = Variables.MODNAME, version = Variables.VERSION, guiFactory = Variables.CONFIG_GUI, acceptedMinecraftVersions = "[1.7.10,1.8)", canBeDeactivated = true) +@Mod (modid = Variables.MODID, name = Variables.MODNAME, version = Variables.VERSION, guiFactory = Variables.CONFIG_GUI, acceptedMinecraftVersions = "[1.7.10,1.8)") public class JewelrycraftMod { @Instance (Variables.MODID) public static JewelrycraftMod instance; @SidedProxy (clientSide = Variables.CLIENT_PROXY, serverSide = Variables.SERVER_PROXY) public static CommonProxy proxy; - public static final Logger logger = Logger.getLogger("Jewelrycraft"); + public static final Logger logger = Logger.getLogger(Variables.MODNAME); public static File dir; public static CreativeTabs jewelrycraft = new CreativeTabs(Variables.MODID){ @Override @@ -81,10 +81,10 @@ public class JewelrycraftMod VillageHandler.preInit(e); EventList.preInit(e); authorList.add("OnyxDarkKnight"); - authorList.add("bspkrs"); - authorList.add("domi1819"); metadata.autogenerated = false; metadata.authorList = authorList; + metadata.description = "Jewelrycraft 2 is a mod about creating jewellery and imbuing them with mystical powers. However, they have both positives and negatives. There are also curses, some good, some bad. Maybe acquiring some wouldn't be that bad."; + metadata.credits = "domi1819, MrCompost, pau101, bspkrs"; metadata.url = "https://github.com/sor1n/Jewelrycraft"; } |
