20 lines
		
	
	
	
		
			1.4 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
	
		
			1.4 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
| 
								 | 
							
								From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
							 | 
						||
| 
								 | 
							
								From: Jake Potrebic <jake.m.potrebic@gmail.com>
							 | 
						||
| 
								 | 
							
								Date: Thu, 8 Jun 2023 21:51:50 -0700
							 | 
						||
| 
								 | 
							
								Subject: [PATCH] Ignore inline definitions of trim material & pattern
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaArmor.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaArmor.java
							 | 
						||
| 
								 | 
							
								index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
							 | 
						||
| 
								 | 
							
								--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaArmor.java
							 | 
						||
| 
								 | 
							
								+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaArmor.java
							 | 
						||
| 
								 | 
							
								@@ -0,0 +0,0 @@ public class CraftMetaArmor extends CraftMetaItem implements ArmorMeta {
							 | 
						||
| 
								 | 
							
								         if (tag.contains(TRIM.NBT)) {
							 | 
						||
| 
								 | 
							
								             CompoundTag trimCompound = tag.getCompound(TRIM.NBT);
							 | 
						||
| 
								 | 
							
								 
							 | 
						||
| 
								 | 
							
								-            if (trimCompound.contains(TRIM_MATERIAL.NBT) && trimCompound.contains(TRIM_PATTERN.NBT)) {
							 | 
						||
| 
								 | 
							
								+            if (trimCompound.contains(TRIM_MATERIAL.NBT, net.minecraft.nbt.Tag.TAG_STRING) && trimCompound.contains(TRIM_PATTERN.NBT, net.minecraft.nbt.Tag.TAG_STRING)) { // Paper - for now, ignore inline definitions of trim material & pattern
							 | 
						||
| 
								 | 
							
								                 TrimMaterial trimMaterial = Registry.TRIM_MATERIAL.get(NamespacedKey.fromString(trimCompound.getString(TRIM_MATERIAL.NBT)));
							 | 
						||
| 
								 | 
							
								                 TrimPattern trimPattern = Registry.TRIM_PATTERN.get(NamespacedKey.fromString(trimCompound.getString(TRIM_PATTERN.NBT)));
							 | 
						||
| 
								 | 
							
								 
							 |