blob: a4e4337c8b0033fa6c20d8b73c677935294fc8d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package bspkrs.briefcasespeakers.block;
import bspkrs.briefcasespeakers.tileentity.TileEntityMolder;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class BlockMolder extends BlockContainer
{
protected BlockMolder(int par1, Material par2Material)
{
super(par1, par2Material);
}
@Override
public TileEntity createNewTileEntity(World world)
{
return new TileEntityMolder();
}
@Override
public boolean renderAsNormalBlock()
{
return false;
}
}
|