22 lines
		
	
	
	
		
			753 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			753 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.world.item;
 | |
| 
 | |
| import java.util.function.Consumer;
 | |
| import net.minecraft.ChatFormatting;
 | |
| import net.minecraft.network.chat.Component;
 | |
| import net.minecraft.network.chat.MutableComponent;
 | |
| import net.minecraft.world.item.component.TooltipDisplay;
 | |
| 
 | |
| public class DiscFragmentItem extends Item {
 | |
| 	public DiscFragmentItem(Item.Properties properties) {
 | |
| 		super(properties);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public void appendHoverText(ItemStack stack, Item.TooltipContext context, TooltipDisplay tooltipDisplay, Consumer<Component> tooltipAdder, TooltipFlag flag) {
 | |
| 		tooltipAdder.accept(this.getDisplayName().withStyle(ChatFormatting.GRAY));
 | |
| 	}
 | |
| 
 | |
| 	public MutableComponent getDisplayName() {
 | |
| 		return Component.translatable(this.descriptionId + ".desc");
 | |
| 	}
 | |
| }
 |