mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-02 09:21:57 +01:00
fix? #5218
This commit is contained in:
parent
6d82aa6d89
commit
33e2178416
1 changed files with 1 additions and 1 deletions
|
@ -1697,7 +1697,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||||
+ // Paper start
|
+ // Paper start
|
||||||
+ for (int i = 0; i < this.lines.size(); ++i) {
|
+ for (int i = 0; i < this.lines.size(); ++i) {
|
||||||
+ net.kyori.adventure.text.Component component = this.lines.get(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)) {
|
+ if (component.equals(origComp)) {
|
||||||
continue; // The line contents are still the same, skip.
|
continue; // The line contents are still the same, skip.
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue