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

View File

@ -90,7 +90,7 @@ public final class CommandECloudDownload extends PlaceholderCommand
}
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!");
plugin.getCloudExpansionManager().clean();

View File

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