Compare commits

..

No commits in common. "882b7c59651ed8f3bb64b179691f49eb330b99a1" and "604fed36a44cc71bd2334b2401fba4bb4d49dce8" have entirely different histories.

2 changed files with 2 additions and 4 deletions

@ -29,7 +29,7 @@ public abstract class PlaceholderHook {
@Nullable @Nullable
public String onRequest(final OfflinePlayer player, @NotNull final String params) { public String onRequest(final OfflinePlayer player, @NotNull final String params) {
if (player != null && player.isOnline()) { if (player != null && player.isOnline()) {
return onPlaceholderRequest(player.getPlayer(), params); return onPlaceholderRequest((Player) player, params);
} }
return onPlaceholderRequest(null, params); return onPlaceholderRequest(null, params);

@ -200,9 +200,7 @@ 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(" [Authors: [") .append(" [Version: ")
.append(String.join(", ", other.getDescription().getAuthors()))
.append("], Version: ")
.append(other.getDescription().getVersion()) .append(other.getDescription().getVersion())
.append("]") .append("]")
.append("\n"); .append("\n");