Update Forge + mappings

This commit is contained in:
Nicholas Ignoffo 2016-04-24 10:06:28 -07:00
parent b408234ab0
commit d550513f0a
98 changed files with 313 additions and 296 deletions

View file

@ -31,7 +31,7 @@ public abstract class BlockRoutingNode extends BlockContainer
public BlockRoutingNode()
{
super(Material.rock);
super(Material.ROCK);
setCreativeTab(BloodMagic.tabBloodMagic);
setHardness(2.0F);
@ -78,7 +78,7 @@ public abstract class BlockRoutingNode extends BlockContainer
}
@Override
public boolean canRenderInLayer(BlockRenderLayer layer)
public boolean canRenderInLayer(IBlockState state, BlockRenderLayer layer)
{
return layer == BlockRenderLayer.CUTOUT_MIPPED || layer == BlockRenderLayer.TRANSLUCENT;
}