mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2024-10-31 19:44:03 +01:00
Merge pull request #1046 from PlaceholderAPI/feature/add-plugin-authors
Add Plugin Authors to /papi dump
This commit is contained in:
commit
882b7c5965
@ -200,7 +200,9 @@ public final class CommandDump extends PlaceholderCommand {
|
|||||||
for (final Plugin other : plugins) {
|
for (final Plugin other : plugins) {
|
||||||
builder.append(" ")
|
builder.append(" ")
|
||||||
.append(String.format("%-" + size + "s", other.getName()))
|
.append(String.format("%-" + size + "s", other.getName()))
|
||||||
.append(" [Version: ")
|
.append(" [Authors: [")
|
||||||
|
.append(String.join(", ", other.getDescription().getAuthors()))
|
||||||
|
.append("], Version: ")
|
||||||
.append(other.getDescription().getVersion())
|
.append(other.getDescription().getVersion())
|
||||||
.append("]")
|
.append("]")
|
||||||
.append("\n");
|
.append("\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user