From b7003c5142cd96fe257f2d1cf2fa86e2f92cb6ff Mon Sep 17 00:00:00 2001 From: extendedclip Date: Sun, 8 Apr 2018 15:41:25 -0400 Subject: [PATCH] Actually show placeholders when the expansion is not installed --- .../me/clip/placeholderapi/commands/ExpansionCloudCommands.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/clip/placeholderapi/commands/ExpansionCloudCommands.java b/src/main/java/me/clip/placeholderapi/commands/ExpansionCloudCommands.java index 26384f5..ba666c5 100644 --- a/src/main/java/me/clip/placeholderapi/commands/ExpansionCloudCommands.java +++ b/src/main/java/me/clip/placeholderapi/commands/ExpansionCloudCommands.java @@ -217,7 +217,7 @@ public class ExpansionCloudCommands implements CommandExecutor { if (!(s instanceof Player) || plugin.getExpansionManager().getRegisteredExpansion(expansion.getName()) == null) { msg(s, "&bPlaceholders: &f" + placeholders.size(), - String.join("&a, &f")); + String.join("&a, &f", placeholders)); return true; }