Fix version and color

This commit is contained in:
extendedclip 2020-07-31 10:52:43 -04:00
parent e932fabe64
commit 81aa425616
2 changed files with 5 additions and 5 deletions

@ -90,7 +90,7 @@ public final class CommandECloudDownload extends PlaceholderCommand
} }
Msg.msg(sender, Msg.msg(sender,
"&aSuccessfully downloaded expansion &f" + expansion.getName() + " [" + version + "] &ato file: &f" + file.getName(), "&aSuccessfully downloaded expansion &f" + expansion.getName() + " [" + version.getVersion() + "] &ato file: &f" + file.getName(),
"&aMake sure to type &f/papi reload &ato enable your new expansion!"); "&aMake sure to type &f/papi reload &ato enable your new expansion!");
plugin.getCloudExpansionManager().clean(); plugin.getCloudExpansionManager().clean();

@ -45,10 +45,10 @@ public final class CommandVersion extends PlaceholderCommand
final PluginDescriptionFile description = plugin.getDescription(); final PluginDescriptionFile description = plugin.getDescription();
Msg.msg(sender, Msg.msg(sender,
"&b&lPlaceholderAPI &e(&f" + description.getVersion() + "&e)", "&b&lPlaceholderAPI &7(&f" + description.getVersion() + "&7)",
"&fAuthors&8: &6" + description.getAuthors(), "&7Author: &f" + description.getAuthors(),
"&fPAPI Commands&8: &b/papi &7help", "&7PAPI Commands: &b/papi &fhelp",
"&feCloud Commands&8: &b/papi &7ecloud"); "&7eCloud Commands&8: &b/papi &fecloud");
} }
} }