Started work on most of the framework for the BlockStringWall - commiting so TehNut can fix my mistakes in life
This commit is contained in:
parent
afcba54df4
commit
78b035d0fd
5 changed files with 284 additions and 0 deletions
|
@ -27,6 +27,7 @@ import WayofTime.bloodmagic.block.BlockDemonLight;
|
|||
import WayofTime.bloodmagic.block.BlockDemonPillarBase;
|
||||
import WayofTime.bloodmagic.block.BlockDemonPillarCapBase;
|
||||
import WayofTime.bloodmagic.block.BlockDemonPylon;
|
||||
import WayofTime.bloodmagic.block.BlockDemonWallBase;
|
||||
import WayofTime.bloodmagic.block.BlockDimensionalPortal;
|
||||
import WayofTime.bloodmagic.block.BlockIncenseAltar;
|
||||
import WayofTime.bloodmagic.block.BlockInputRoutingNode;
|
||||
|
@ -53,6 +54,7 @@ import WayofTime.bloodmagic.item.block.ItemBlockDemonCrystal;
|
|||
import WayofTime.bloodmagic.item.block.ItemBlockDemonLight;
|
||||
import WayofTime.bloodmagic.item.block.ItemBlockDemonPillarBase;
|
||||
import WayofTime.bloodmagic.item.block.ItemBlockDemonPillarCapBase;
|
||||
import WayofTime.bloodmagic.item.block.ItemBlockDemonWallBase;
|
||||
import WayofTime.bloodmagic.item.block.ItemBlockMimic;
|
||||
import WayofTime.bloodmagic.item.block.ItemBlockPath;
|
||||
import WayofTime.bloodmagic.item.block.ItemBlockPedestal;
|
||||
|
@ -134,6 +136,8 @@ public class ModBlocks
|
|||
|
||||
public static Block demonLight;
|
||||
|
||||
public static Block demonWall1;
|
||||
|
||||
public static void init()
|
||||
{
|
||||
FluidRegistry.registerFluid(BlockLifeEssence.getLifeEssence());
|
||||
|
@ -184,6 +188,8 @@ public class ModBlocks
|
|||
|
||||
demonLight = registerBlock(new ItemBlockDemonLight(new BlockDemonLight()), Constants.BloodMagicBlock.DEMON_LIGHT.getRegName());
|
||||
|
||||
demonWall1 = registerBlock(new ItemBlockDemonWallBase(new BlockDemonWallBase("wall1", Material.ROCK, new String[] { "raw", "corrosive" })), "BlockWall1");
|
||||
|
||||
BloodMagicAPI.addToTeleposerBlacklist(inputRoutingNode);
|
||||
BloodMagicAPI.addToTranspositionBlacklist(inputRoutingNode);
|
||||
BloodMagicAPI.addToTeleposerBlacklist(outputRoutingNode);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue