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 9e2c51f commit 91d4593Copy full SHA for 91d4593
src/main/java/vc/commands/ChatSearchCommand.java
@@ -88,7 +88,7 @@ public Mono<Message> resolve(DeferrableInteractionEvent event, String word, int
88
final StringBuilder result = new StringBuilder();
89
final AtomicBoolean truncated = new AtomicBoolean(false);
90
response.getChats().stream()
91
- .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()))
92
.forEachOrdered(s -> {
93
if (result.length() + s.length() + 1 > 4090) {
94
truncated.set(true);
0 commit comments