2013-12-27 23:59:59 +01:00
|
|
|
package appeng.block.networking;
|
|
|
|
|
|
|
|
import java.util.EnumSet;
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraft.block.Block;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import appeng.block.AEBaseBlock;
|
|
|
|
import appeng.client.render.BaseBlockRender;
|
|
|
|
import appeng.client.render.blocks.RenderBlockController;
|
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
import appeng.tile.networking.TileController;
|
|
|
|
|
|
|
|
public class BlockController extends AEBaseBlock
|
|
|
|
{
|
|
|
|
|
|
|
|
public BlockController() {
|
|
|
|
super( BlockController.class, Material.iron );
|
2014-09-20 23:24:29 +02:00
|
|
|
setFeature( EnumSet.of( AEFeature.Channels ) );
|
2014-09-20 23:23:39 +02:00
|
|
|
setTileEntity( TileController.class );
|
2014-03-15 07:58:21 +01:00
|
|
|
setHardness( 6 );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
public void onNeighborBlockChange(World w, int x, int y, int z, Block id_junk)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
TileController tc = getTileEntity( w, x, y, z );
|
|
|
|
if ( tc != null )
|
|
|
|
tc.onNeighborChange( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Class<? extends BaseBlockRender> getRenderer()
|
|
|
|
{
|
|
|
|
return RenderBlockController.class;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|