mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-16 18:46:12 +00:00
42 lines
2.2 KiB
Diff
42 lines
2.2 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Luna <lunahatesgogle@gmail.com>
|
||
|
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 b50cd7a39c077dcbabdfea1b9290bf5b144d4384..d38562b518b28ba4617d39e4587c7fa72859ab11 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 d2a77b4ca343d19e1c70afe3f3906a9bd53d0eec..93de0f1376604ad3f2c519c04f12269484dabfe9 100644
|
||
|
--- a/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java
|
||
|
+++ b/src/main/java/net/minecraft/world/entity/decoration/ItemFrame.java
|
||
|
@@ -420,7 +420,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();
|