d4ff8e731d
Added Charged Quartz Spawn Chance. All GUI's Parts/Tiles support Custom Localization. ( Fixes #0190 ) Added Crafting Recipe for copying Press Plates. Fixed Bug: #0189 - Particles don't turn off when set to minimal Fixed Bug: #0176 - Weird Colorization While Mining Parts. Fixed Bug: #0152 - TPane drops parts as items and does not insert into system. Fixed Bug: #0140 - Spatial pylon facade renders oddly (Clear)
38 lines
954 B
Java
38 lines
954 B
Java
package appeng.block.networking;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
import net.minecraft.block.Block;
|
|
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 );
|
|
setfeature( EnumSet.of( AEFeature.Core ) );
|
|
setTileEntiy( TileController.class );
|
|
setHardness( 6 );
|
|
}
|
|
|
|
@Override
|
|
public void onNeighborBlockChange(World w, int x, int y, int z, Block id_junk)
|
|
{
|
|
TileController tc = getTileEntity( w, x, y, z );
|
|
if ( tc != null )
|
|
tc.onNeighborChange( false );
|
|
}
|
|
|
|
@Override
|
|
protected Class<? extends BaseBlockRender> getRenderer()
|
|
{
|
|
return RenderBlockController.class;
|
|
}
|
|
|
|
}
|