package net.minecraft.world.level.block; import com.mojang.serialization.MapCodec; import net.minecraft.core.BlockPos; import net.minecraft.network.chat.Component; import net.minecraft.stats.Stats; import net.minecraft.world.InteractionResult; import net.minecraft.world.MenuProvider; import net.minecraft.world.SimpleMenuProvider; import net.minecraft.world.entity.player.Player; import net.minecraft.world.inventory.ContainerLevelAccess; import net.minecraft.world.inventory.SmithingMenu; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.phys.BlockHitResult; /** * Access widened by fabric-transitive-access-wideners-v1 to accessible */ public class SmithingTableBlock extends CraftingTableBlock { public static final MapCodec CODEC = simpleCodec(SmithingTableBlock::new); private static final Component CONTAINER_TITLE = Component.translatable("container.upgrade"); @Override public MapCodec codec() { return CODEC; } /** * Access widened by fabric-transitive-access-wideners-v1 to accessible */ public SmithingTableBlock(final BlockBehaviour.Properties properties) { super(properties); } @Override protected MenuProvider getMenuProvider(final BlockState state, final Level level, final BlockPos pos) { return new SimpleMenuProvider( (containerId, inventory, player) -> new SmithingMenu(containerId, inventory, ContainerLevelAccess.create(level, pos)), CONTAINER_TITLE ); } @Override protected InteractionResult useWithoutItem(final BlockState state, final Level level, final BlockPos pos, final Player player, final BlockHitResult hitResult) { if (!level.isClientSide()) { player.openMenu(state.getMenuProvider(level, pos)); player.awardStat(Stats.INTERACT_WITH_SMITHING_TABLE); } return InteractionResult.SUCCESS; } }