mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-17 17:53:11 +01:00
30 lines
949 B
Java
30 lines
949 B
Java
|
package de.ellpeck.naturesaura.blocks;
|
||
|
|
||
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityAuraDetector;
|
||
|
import net.minecraft.block.material.Material;
|
||
|
import net.minecraft.block.state.IBlockState;
|
||
|
import net.minecraft.tileentity.TileEntity;
|
||
|
import net.minecraft.util.math.BlockPos;
|
||
|
import net.minecraft.world.World;
|
||
|
|
||
|
public class BlockAuraDetector extends BlockContainerImpl {
|
||
|
|
||
|
public BlockAuraDetector() {
|
||
|
super(Material.ROCK, "aura_detector", TileEntityAuraDetector.class, "aura_detector");
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean hasComparatorInputOverride(IBlockState state) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int getComparatorInputOverride(IBlockState blockState, World worldIn, BlockPos pos) {
|
||
|
TileEntity tile = worldIn.getTileEntity(pos);
|
||
|
if (tile instanceof TileEntityAuraDetector)
|
||
|
return ((TileEntityAuraDetector) tile).redstonePower;
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
}
|