40 lines
964 B
Java
40 lines
964 B
Java
package appeng.block.misc;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.world.World;
|
|
import appeng.block.AEBaseBlock;
|
|
import appeng.core.features.AEFeature;
|
|
import appeng.tile.misc.TileNetworkEmitter;
|
|
import appeng.util.Platform;
|
|
|
|
public class BlockNetworkEmitter extends AEBaseBlock
|
|
{
|
|
|
|
public BlockNetworkEmitter() {
|
|
super( BlockNetworkEmitter.class, Material.iron );
|
|
setfeature( EnumSet.of( AEFeature.Core ) );
|
|
setTileEntiy( TileNetworkEmitter.class );
|
|
}
|
|
|
|
@Override
|
|
public boolean onActivated(World w, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ)
|
|
{
|
|
if ( player.isSneaking() )
|
|
return false;
|
|
|
|
if ( Platform.isServer() )
|
|
{
|
|
TileNetworkEmitter tc = getTileEntity( w, x, y, z );
|
|
if ( tc != null )
|
|
{
|
|
tc.activate( player );
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|