summaryrefslogtreecommitdiff
path: root/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-04-29 13:57:06 +0100
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-04-29 13:57:06 +0100
commitb9ca797621e116f65aff916f5d4d485a93be1abf (patch)
tree4437c5de43b68bda66e8d1fc6539f2c03995ff12 /src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
parent4774926ed9703b000ecbcff69636dd7ea4abf5d6 (diff)
- Removed the Jewel Altar
- Improved Ritual
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java')
-rw-r--r--src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java b/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
index ae6cb6d..b08dc22 100644
--- a/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
+++ b/src/main/java/darkknight/jewelrycraft/JewelrycraftMod.java
@@ -57,8 +57,7 @@ public class JewelrycraftMod
public static NBTTagCompound clientData = new NBTTagCompound();
public static File liquidsConf;
public static SimpleNetworkWrapper netWrapper;
- public static boolean fancyRender;
-// List<String> authorList = new ArrayList<String>();
+ public static boolean fancyRender = false;
/**
* Pre initialization of mod stuff.
@@ -69,7 +68,6 @@ public class JewelrycraftMod
@EventHandler
public void preInit(FMLPreInitializationEvent e) throws IOException
{
-// ModMetadata metadata = e.getModMetadata();
dir = e.getModConfigurationDirectory();
ConfigHandler.INSTANCE.loadConfig(e);
BlockList.preInit(e);
@@ -80,13 +78,6 @@ 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, 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