diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-02-08 03:03:22 +0200 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-02-08 03:03:22 +0200 |
| commit | 4d0e0e8de72bda8543a888082a93b1e56f13856b (patch) | |
| tree | b17c62ab7119ce485d49f163e4c10dfd05ae0d57 /common/darkknight/jewelrycraft/config/ConfigHandler.java | |
| parent | 9075a22c3e303699db18062ebfc0159cace27c29 (diff) | |
Added a new block and implemented an on/off "switch" for the rings that give buffs, also working on balancing the rings
Diffstat (limited to 'common/darkknight/jewelrycraft/config/ConfigHandler.java')
| -rw-r--r-- | common/darkknight/jewelrycraft/config/ConfigHandler.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/darkknight/jewelrycraft/config/ConfigHandler.java b/common/darkknight/jewelrycraft/config/ConfigHandler.java index cba8759..648d0bd 100644 --- a/common/darkknight/jewelrycraft/config/ConfigHandler.java +++ b/common/darkknight/jewelrycraft/config/ConfigHandler.java @@ -17,7 +17,8 @@ public class ConfigHandler public static int idDisplayer = 1752; public static int idJewelCraftingTable = 1753; public static int idMolder = 1754; - public static int idGlow = 1755; + public static int idGlow = 1755; + public static int idShadowBlock = 1756; public static int ingotCoolingTime = 200; public static int ingotMeltingTime = 1500; @@ -40,6 +41,7 @@ public class ConfigHandler idRing = config.getItem("Ring", idRing).getInt(); idShadowOre = config.getBlock("Shadow Ore", idShadowOre).getInt(); + idShadowBlock = config.getBlock("Shadow Block", idShadowBlock).getInt(); idSmelter = config.getBlock("Smelter", idSmelter).getInt(); idMolder = config.getBlock("Molder", idMolder).getInt(); idDisplayer = config.getBlock("Displayer", idDisplayer).getInt(); |
