Added debug items
This commit is contained in:
parent
d8829fd33c
commit
d66c2e8301
2 changed files with 55 additions and 0 deletions
|
@ -93,6 +93,7 @@ public class ModItems {
|
|||
public static Item upgrades;
|
||||
|
||||
public static Item missingRecipe;
|
||||
public static Item debug;
|
||||
|
||||
|
||||
public static void init() throws InstantiationException, IllegalAccessException {
|
||||
|
@ -329,6 +330,9 @@ public class ModItems {
|
|||
missingRecipe = new ItemMissingRecipe().setUnlocalizedName("missingRecipe");
|
||||
GameRegistry.registerItem(missingRecipe, "mssingRecipe");
|
||||
|
||||
debug = new ItemDebugTool();
|
||||
GameRegistry.registerItem(debug, "debug");
|
||||
|
||||
MinecraftForge.EVENT_BUS.register(BucketHandler.INSTANCE);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue