From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 20 Mar 2022 09:31:16 -0300 Subject: [PATCH] Do not log invalid items in HoverEvent and ItemFrame diff --git a/src/main/java/net/minecraft/network/chat/HoverEvent.java b/src/main/java/net/minecraft/network/chat/HoverEvent.java index c0633f9553fb5aa52e8ffc863159521d09cb3bd5..7449a024265c42f28a6c9a1ed8d8f4b9e3096aac 100644 --- a/src/main/java/net/minecraft/network/chat/HoverEvent.java +++ b/src/main/java/net/minecraft/network/chat/HoverEvent.java @@ -314,7 +314,7 @@ public class HoverEvent { CompoundTag compoundTag = TagParser.parseTag(string); return new HoverEvent.ItemStackInfo(item, i, compoundTag); } catch (CommandSyntaxException var6) { - HoverEvent.LOGGER.warn("Failed to parse tag: {}", string, var6); + // Scissors - Ignore invalid items } } @@ -328,7 +328,7 @@ public class HoverEvent { CompoundTag compoundTag = TagParser.parseTag(text.getString()); return new HoverEvent.ItemStackInfo(ItemStack.of(compoundTag)); } catch (CommandSyntaxException var2) { - HoverEvent.LOGGER.warn("Failed to parse item tag: {}", text, var2); + // Scissors - Ignore invalid items return null; } } diff --git a/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java b/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java index 759ecd79534a7706f7d4a63eb9dacbefcfe54674..9afda54ad70d446672749506822c6abd729b8f1b 100644 --- a/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java +++ b/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java @@ -441,7 +441,7 @@ public class ItemFrame extends HangingEntity { ItemStack itemstack = ItemStack.of(nbttagcompound1); if (itemstack.isEmpty()) { - ItemFrame.LOGGER.warn("Unable to load item from: {}", nbttagcompound1); + // Scissors - ignore invalid items } ItemStack itemstack1 = this.getItem();