package com.harry9137.ct.block; import com.harry9137.ct.reference.names; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.init.Blocks; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; public class BlockNetherSoil extends BlockCT { public BlockNetherSoil() { super(Material.ground); this.setUnlocalizedName(names.blocks.BlockNetherSoil); } @Override public TileEntity createNewTileEntity(World world, int metadata) { return null; } }