From 33e217841695c85e0b0bede60fc0b31514236007 Mon Sep 17 00:00:00 2001 From: Riley Park Date: Mon, 22 Feb 2021 04:31:51 -0800 Subject: [PATCH] fix? #5218 --- Spigot-Server-Patches/Adventure.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-Server-Patches/Adventure.patch b/Spigot-Server-Patches/Adventure.patch index eb97e3cbf9..ff5385532d 100644 --- a/Spigot-Server-Patches/Adventure.patch +++ b/Spigot-Server-Patches/Adventure.patch @@ -1697,7 +1697,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + // Paper start + for (int i = 0; i < this.lines.size(); ++i) { + net.kyori.adventure.text.Component component = this.lines.get(i); -+ net.kyori.adventure.text.Component origComp = this.lines.get(i); ++ net.kyori.adventure.text.Component origComp = this.originalLines.get(i); + if (component.equals(origComp)) { continue; // The line contents are still the same, skip. }