Skip to content

Commit 7f37b5e

Browse files
authored
Fix minimessage parsing in playerlist keyword replacement (#6505)
Fixes #6502
1 parent f39bc91 commit 7f37b5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Essentials/src/main/java/com/earth2me/essentials/textreader/KeywordReplacer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ private String replaceLine(String line, final String fullMatch, final String[] m
288288
for (final String groupName : playerList.keySet()) {
289289
final List<User> groupUsers = playerList.get(groupName);
290290
if (groupUsers != null && !groupUsers.isEmpty()) {
291-
outputList.put(groupName, PlayerList.listUsers(ess, groupUsers, " "));
291+
outputList.put(groupName, ess.getAdventureFacet().miniToLegacy(PlayerList.listUsers(ess, groupUsers, " ")));
292292
}
293293
}
294294

0 commit comments

Comments
 (0)