18 lines
		
	
	
	
		
			635 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			635 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.world.item;
 | |
| 
 | |
| import net.minecraft.core.Direction;
 | |
| import net.minecraft.world.level.block.AbstractBannerBlock;
 | |
| import net.minecraft.world.level.block.Block;
 | |
| import org.apache.commons.lang3.Validate;
 | |
| 
 | |
| public class BannerItem extends StandingAndWallBlockItem {
 | |
| 	public BannerItem(Block block, Block wallBlock, Item.Properties properties) {
 | |
| 		super(block, wallBlock, Direction.DOWN, properties);
 | |
| 		Validate.isInstanceOf(AbstractBannerBlock.class, block);
 | |
| 		Validate.isInstanceOf(AbstractBannerBlock.class, wallBlock);
 | |
| 	}
 | |
| 
 | |
| 	public DyeColor getColor() {
 | |
| 		return ((AbstractBannerBlock)this.getBlock()).getColor();
 | |
| 	}
 | |
| }
 |