Add Electric Treetap & Make sap go directly into inventory : From: 2aa69a1425eb8928d530c58e7c8a2495e71ea78f
This commit is contained in:
parent
9e47eb8cfe
commit
dda189fbc6
3 changed files with 136 additions and 28 deletions
|
@ -44,6 +44,7 @@ public class ModItems {
|
|||
|
||||
public static Item reBattery;
|
||||
public static Item treeTap;
|
||||
public static Item electricTreetap;
|
||||
|
||||
public static Item ironDrill;
|
||||
public static Item diamondDrill;
|
||||
|
@ -162,6 +163,9 @@ public class ModItems {
|
|||
treeTap = new ItemTreeTap();
|
||||
registerItem(treeTap, "treetap");
|
||||
|
||||
electricTreetap = PoweredItem.createItem(ItemElectricTreetap.class);
|
||||
registerItem(electricTreetap, "electricTreetap");
|
||||
|
||||
ironDrill = PoweredItem.createItem(ItemSteelDrill.class);
|
||||
registerItem(ironDrill, "irondrill");
|
||||
diamondDrill = PoweredItem.createItem(ItemDiamondDrill.class);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue