mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
62 lines
2 KiB
Java
62 lines
2 KiB
Java
|
package de.ellpeck.naturesaura.blocks;
|
||
|
|
||
|
import de.ellpeck.naturesaura.Helper;
|
||
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityOfferingTable;
|
||
|
import net.minecraft.block.SoundType;
|
||
|
import net.minecraft.block.material.Material;
|
||
|
import net.minecraft.block.state.BlockFaceShape;
|
||
|
import net.minecraft.block.state.IBlockState;
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.util.EnumFacing;
|
||
|
import net.minecraft.util.EnumHand;
|
||
|
import net.minecraft.util.math.AxisAlignedBB;
|
||
|
import net.minecraft.util.math.BlockPos;
|
||
|
import net.minecraft.world.IBlockAccess;
|
||
|
import net.minecraft.world.World;
|
||
|
|
||
|
public class BlockOfferingTable extends BlockContainerImpl {
|
||
|
|
||
|
private static final AxisAlignedBB BOUND_BOX = new AxisAlignedBB(2 / 16F, 0F, 2 / 16F, 14 / 16F, 1F, 14 / 16F);
|
||
|
|
||
|
public BlockOfferingTable() {
|
||
|
super(Material.WOOD, "offering_table", TileEntityOfferingTable.class, "offering_table");
|
||
|
this.setSoundType(SoundType.WOOD);
|
||
|
this.setHardness(2F);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) {
|
||
|
return Helper.putStackOnTile(playerIn, hand, pos, 0, true);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
|
||
|
return BOUND_BOX;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isFullCube(IBlockState state) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isOpaqueCube(IBlockState state) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isSideSolid(IBlockState baseState, IBlockAccess world, BlockPos pos, EnumFacing side) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public BlockFaceShape getBlockFaceShape(IBlockAccess worldIn, IBlockState state, BlockPos pos, EnumFacing face) {
|
||
|
return BlockFaceShape.UNDEFINED;
|
||
|
}
|
||
|
}
|