25 lines
1.1 KiB
Java
25 lines
1.1 KiB
Java
package ru.bclib.mixin.common;
|
|
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.world.level.Level;
|
|
import net.minecraft.world.level.block.Block;
|
|
import net.minecraft.world.level.block.Blocks;
|
|
import net.minecraft.world.level.block.EnchantmentTableBlock;
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.injection.At;
|
|
import org.spongepowered.asm.mixin.injection.Inject;
|
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
|
import ru.bclib.api.tag.CommonBlockTags;
|
|
import ru.bclib.util.MethodReplace;
|
|
|
|
@Mixin(EnchantmentTableBlock.class)
|
|
public abstract class EnchantingTableBlockMixin extends Block {
|
|
public EnchantingTableBlockMixin(Properties settings) {
|
|
super(settings);
|
|
}
|
|
|
|
@Inject(method = "isValidBookShelf(Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z", at = @At("HEAD"), cancellable = true)
|
|
private static void bclib_isBookshelf(Level level, BlockPos blockPos, BlockPos blockPos2, CallbackInfoReturnable<Boolean> info) {
|
|
MethodReplace.addBlockReplace(Blocks.BOOKSHELF, state -> state.is(CommonBlockTags.BOOKSHELVES));
|
|
}
|
|
}
|