Skip to content

Commit

Permalink
修复方块吞噬器无法被铁砧锤拆除
Browse files Browse the repository at this point in the history
  • Loading branch information
wdfaESfaef committed May 23, 2024
1 parent 16314c9 commit c108a89
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import dev.dubhe.anvilcraft.api.depository.IItemDepository;
import dev.dubhe.anvilcraft.api.depository.ItemDepositoryHelper;
import dev.dubhe.anvilcraft.api.hammer.IHammerChangeable;
import dev.dubhe.anvilcraft.api.hammer.IHammerChangeableBlock;
import dev.dubhe.anvilcraft.api.hammer.IHammerRemovable;
import dev.dubhe.anvilcraft.init.ModBlockTags;
import java.util.List;
import javax.annotation.Nonnull;
Expand All @@ -32,7 +32,7 @@
import net.minecraft.world.phys.shapes.VoxelShape;
import org.jetbrains.annotations.NotNull;

public class BlockDevourerBlock extends DirectionalBlock implements IHammerChangeableBlock, IHammerChangeable {
public class BlockDevourerBlock extends DirectionalBlock implements IHammerChangeableBlock, IHammerRemovable {

public static final VoxelShape NORTH_SHAPE = Block.box(0, 0, 8, 16, 16, 16);
public static final VoxelShape SOUTH_SHAPE = Block.box(0, 0, 0, 16, 16, 8);
Expand Down

0 comments on commit c108a89

Please sign in to comment.