minecraft-src/net/minecraft/world/item/WrittenBookItem.java
2025-07-04 03:45:38 +03:00

21 lines
644 B
Java

package net.minecraft.world.item;
import net.minecraft.stats.Stats;
import net.minecraft.world.InteractionHand;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.Level;
public class WrittenBookItem extends Item {
public WrittenBookItem(Item.Properties properties) {
super(properties);
}
@Override
public InteractionResult use(Level level, Player player, InteractionHand hand) {
ItemStack itemStack = player.getItemInHand(hand);
player.openItemGui(itemStack, hand);
player.awardStat(Stats.ITEM_USED.get(this));
return InteractionResult.SUCCESS;
}
}