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

public class BlockFletchingTable extends BlockWorkbench {

    protected BlockFletchingTable(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;
    }
}