We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fdbf8a commit d0ff589Copy full SHA for d0ff589
src/main/java/vc/commands/ChatSearchCommand.java
@@ -59,7 +59,7 @@ public Mono<Message> handle(final ChatInputInteractionEvent event) {
59
return error(event, "Error during search");
60
}
61
var chatStrings = response.getChats().stream()
62
- .map(c -> SHORT_DATE_TIME.format(c.getTime().toInstant()) + " " + escape(c.getChat()))
+ .map(c -> SHORT_DATE_TIME.format(c.getTime().toInstant()) + " **" + escape(c.getPlayerName()) + ":** " + escape(c.getChat()))
63
.toList();
64
StringBuilder result = new StringBuilder();
65
for (String s : chatStrings) {
0 commit comments