summaryrefslogtreecommitdiff
path: root/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-04-28 13:25:17 +0100
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-04-28 13:25:17 +0100
commit17c10d87711b3e587c5fb2fb55cdc4eb8a61b75a (patch)
treee01ce7142a5812998e7c1da0c2f82f3a1ad72195 /src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
parent78d7a3b4d653f1d7ec311f92677b3f6efbc09fd6 (diff)
- Fixed some grammatical errors in the guide.
- Made the Smelter basin and bucket look metallic - Made the Jeweler's Crafting Table texture to have a wooden top and stone legs - Updated forge to version 10.13.3.1395 - Changed the Jeweler's Crafting Recipe to use stone instead of cobblestone - Fixed Fossils and Archeology from crashing - Added a mcmod.info and a logo to it
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java')
-rw-r--r--src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java b/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
index a1c6227..ae6cb6d 100644
--- a/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
+++ b/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
@@ -58,7 +58,7 @@ public class JewelrycraftMod
public static File liquidsConf;
public static SimpleNetworkWrapper netWrapper;
public static boolean fancyRender;
- List<String> authorList = new ArrayList<String>();
+// List<String> authorList = new ArrayList<String>();
/**
* Pre initialization of mod stuff.
@@ -69,7 +69,7 @@ public class JewelrycraftMod
@EventHandler
public void preInit(FMLPreInitializationEvent e) throws IOException
{
- ModMetadata metadata = e.getModMetadata();
+// ModMetadata metadata = e.getModMetadata();
dir = e.getModConfigurationDirectory();
ConfigHandler.INSTANCE.loadConfig(e);
BlockList.preInit(e);
@@ -80,12 +80,13 @@ public class JewelrycraftMod
EntityList.preInit(e);
VillageHandler.preInit(e);
EventList.preInit(e);
- authorList.add("OnyxDarkKnight");
- 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";
+// authorList.add("OnyxDarkKnight");
+// 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, DamienHazard";
+// metadata.url = "http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/2414865-jewelrycraft-2-customizable-jewelry-with-special";
+// metadata.logoFile = "/FullSmelter.png";
}
@EventHandler