Add Plugin Authors to /papi dump

This commit is contained in:
Andre601 2024-02-25 14:42:48 +01:00
parent 604fed36a4
commit e94328935d
No known key found for this signature in database
GPG Key ID: 90E82BD59347A86C
1 changed files with 3 additions and 1 deletions

View File

@ -200,7 +200,9 @@ public final class CommandDump extends PlaceholderCommand {
for (final Plugin other : plugins) {
builder.append(" ")
.append(String.format("%-" + size + "s", other.getName()))
.append(" [Version: ")
.append(" [Authors: [")
.append(String.join(", ", other.getDescription().getAuthors()))
.append("], Version: ")
.append(other.getDescription().getVersion())
.append("]")
.append("\n");