Skip to content

Commit 9da14d2

Browse files
Fix StackOverflow when appending components
1 parent 97afbca commit 9da14d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/maxgamer/quickshop/chat/platform/minedown/BungeeQuickChat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ public BungeeComponentBuilder append(BaseComponent component) {
335335
if (builder.getCursor() == -1) {
336336
append(component, ComponentBuilder.FormatRetention.EVENTS);
337337
} else {
338-
append(component);
338+
append(component, ComponentBuilder.FormatRetention.ALL);
339339
}
340340
return this;
341341
}

0 commit comments

Comments
 (0)