mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 18:50:51 +01:00
66779f5c86
== AT == public net.minecraft.network.chat.HoverEvent$ItemStackInfo item public net.minecraft.network.chat.HoverEvent$ItemStackInfo count public net.minecraft.network.chat.HoverEvent$ItemStackInfo components public net.minecraft.network.chat.contents.TranslatableContents filterAllowedArguments(Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; Co-authored-by: zml <zml@stellardrift.ca> Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com>
14 lines
645 B
Diff
14 lines
645 B
Diff
--- a/net/minecraft/network/chat/MutableComponent.java
|
|
+++ b/net/minecraft/network/chat/MutableComponent.java
|
|
@@ -94,6 +94,11 @@
|
|
|
|
@Override
|
|
public boolean equals(Object object) {
|
|
+ // Paper start - make AdventureComponent equivalent
|
|
+ if (object instanceof io.papermc.paper.adventure.AdventureComponent adventureComponent) {
|
|
+ object = adventureComponent.deepConverted();
|
|
+ }
|
|
+ // Paper end - make AdventureComponent equivalent
|
|
return this == object
|
|
|| object instanceof MutableComponent mutableComponent
|
|
&& this.contents.equals(mutableComponent.contents)
|