And add the stuff to the mod
This commit is contained in:
parent
9ee8691858
commit
900d823fde
1 changed files with 6 additions and 0 deletions
|
@ -37,6 +37,7 @@ import resonantinduction.wire.EnumWireMaterial;
|
|||
import resonantinduction.wire.ItemBlockWire;
|
||||
import resonantinduction.wire.TileEntityTickWire;
|
||||
import resonantinduction.wire.TileEntityWire;
|
||||
import resonantinduction.wire.multipart.ItemPartWire;
|
||||
import universalelectricity.core.item.IItemElectric;
|
||||
import universalelectricity.core.vector.Vector3;
|
||||
import universalelectricity.prefab.TranslationHelper;
|
||||
|
@ -136,6 +137,7 @@ public class ResonantInduction
|
|||
public static Item itemCapacitor;
|
||||
public static Item itemInfiniteCapacitor;
|
||||
public static Item itemLinker;
|
||||
public static Item itemPartWire;
|
||||
|
||||
// Blocks
|
||||
public static Block blockTesla;
|
||||
|
@ -170,6 +172,8 @@ public class ResonantInduction
|
|||
itemLinker = new ItemLinker(getNextItemID());
|
||||
itemInfiniteCapacitor = new ItemInfiniteCapacitor(getNextItemID());
|
||||
|
||||
itemPartWire = new ItemPartWire(getNextItemID());
|
||||
|
||||
// Blocks
|
||||
blockTesla = new BlockTesla(getNextBlockID());
|
||||
blockMultimeter = new BlockMultimeter(getNextBlockID());
|
||||
|
@ -222,6 +226,8 @@ public class ResonantInduction
|
|||
metadata.authorList = Arrays.asList(new String[] { "Calclavia", "Aidancbrady" });
|
||||
metadata.credits = "Thanks to Archadia for the awesome assets!";
|
||||
metadata.autogenerated = false;
|
||||
|
||||
new MultipartRI().init();
|
||||
}
|
||||
|
||||
@EventHandler
|
||||
|
|
Loading…
Reference in a new issue