
Finished the spell blocks enough to allow further expansion. Need to work on textures, as well as the orientation mechanics of the blocks. Also need to look at Vazkii's block renderer to verify a few feature additions.
22 lines
481 B
Java
22 lines
481 B
Java
package WayofTime.alchemicalWizardry.common.block;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.world.World;
|
|
import WayofTime.alchemicalWizardry.common.tileEntity.TESpellEffectBlock;
|
|
|
|
|
|
public class BlockSpellEffect extends BlockOrientable
|
|
{
|
|
public BlockSpellEffect(int id)
|
|
{
|
|
super(id);
|
|
setUnlocalizedName("blockSpellEffect");
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world)
|
|
{
|
|
return new TESpellEffectBlock();
|
|
}
|
|
}
|