diff options
| author | Draknyte1 <Draknyte1@hotmail.com> | 2016-04-03 18:14:21 +1000 |
|---|---|---|
| committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-04-03 18:14:21 +1000 |
| commit | 915139115434ff5797df6f82a63578e938864016 (patch) | |
| tree | 5e8f655e8e9cc8b1af2db2ae3fdbbedfb942ec39 /src/Java/miscutil/core/lib | |
| parent | 6e2d7b787d2338fd6e35532f91e6ff6a48eed682 (diff) | |
| download | GT5-Unofficial-915139115434ff5797df6f82a63578e938864016.tar.gz GT5-Unofficial-915139115434ff5797df6f82a63578e938864016.tar.bz2 GT5-Unofficial-915139115434ff5797df6f82a63578e938864016.zip | |
Finally, Got everything working how I want. Only thing left to do is the anti-grief block.
Fixed Buffer Cores, now there is 10 tiers, all with a unique colour and recipe.
Energy Buffers have had their recipes revised, due to new recipes for the cores.
Steam condenser may need tweaking, but for now, I'll let it slide and players test it.
Updated a few graphics too, the Staballoy Axe and Pickaxe, the Buffer Core and the New Hammer Tool all received visual updates.
Compiled build and Dev. build will be up shortly.
Diffstat (limited to 'src/Java/miscutil/core/lib')
| -rw-r--r-- | src/Java/miscutil/core/lib/CORE.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Java/miscutil/core/lib/CORE.java b/src/Java/miscutil/core/lib/CORE.java index d7b8ce9919..9edad2fc12 100644 --- a/src/Java/miscutil/core/lib/CORE.java +++ b/src/Java/miscutil/core/lib/CORE.java @@ -9,10 +9,12 @@ public class CORE { public static final String name = "Misc. Utils"; public static final String MODID = "miscutils"; public static final String VERSION = "0.9.8"; - public static final boolean DEBUG = true; + public static final boolean DEBUG = false; public static final boolean LOAD_ALL_CONTENT = false; public static final int GREG_FIRST_ID = 760; public static Map PlayerCache; + public static final String[] VOLTAGES = {"ULV","LV","MV","HV","EV","IV","LuV","ZPM","UV","MAX"}; + public static final Class<AddToCreativeTab> TAB = AddToCreativeTab.class; |
