minecraft-source/src/net/minecraft/world/level/block/SmithingTableBlock.java

21 lines
733 B
Java

package net.minecraft.world.level.block;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.phys.BlockHitResult;
import net.minecraft.world.InteractionHand;
import net.minecraft.world.entity.player.Player;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.state.BlockState;
public class SmithingTableBlock extends CraftingTableBlock {
protected SmithingTableBlock(final Properties c) {
super(c);
}
@Override
public InteractionResult use(final BlockState byg, final Level bjt, final BlockPos fk, final Player ayg, final InteractionHand ajh, final BlockHitResult cvd) {
return InteractionResult.PASS;
}
}