Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / BlockSmithingTable.java
Simon Lindgren on 26 Mar 2020 452 bytes first commit
package net.minecraft.server;

public class BlockSmithingTable extends BlockWorkbench {

    protected BlockSmithingTable(Block.Info block_info) {
        super(block_info);
    }

    @Override
    public EnumInteractionResult interact(IBlockData iblockdata, World world, BlockPosition blockposition, EntityHuman entityhuman, EnumHand enumhand, MovingObjectPositionBlock movingobjectpositionblock) {
        return EnumInteractionResult.PASS;
    }
}