Updated Standards

This commit is contained in:
Brianna O'Keefe 2019-01-17 15:26:40 -05:00
parent 742ee1c021
commit 5ee778b915
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ stages:
variables:
name: "EpicSpawners"
path: "/builds/Songoda/$name"
version: "5.5.38"
version: "5.5.39"
build:
stage: build

View File

@ -146,7 +146,7 @@ public class EpicSpawnersPlugin extends JavaPlugin implements EpicSpawners {
ConsoleCommandSender console = Bukkit.getConsoleSender();
console.sendMessage(TextComponent.formatText("&a============================="));
console.sendMessage(TextComponent.formatText(String.format("&7%s %s by &5Brianna <3&7!", this.getName(), this.getDescription().getVersion())));
console.sendMessage(TextComponent.formatText(String.format("&7%s %s by &5Songoda <3&7!", this.getName(), this.getDescription().getVersion())));
console.sendMessage(TextComponent.formatText("&7Action: &aEnabling&7..."));
this.heads = new Heads();
@ -307,7 +307,7 @@ public class EpicSpawnersPlugin extends JavaPlugin implements EpicSpawners {
//this.spawnerRegistry.clearRegistry();
ConsoleCommandSender console = Bukkit.getConsoleSender();
console.sendMessage(TextComponent.formatText("&a============================="));
console.sendMessage(TextComponent.formatText("&7EpicSpawners " + this.getDescription().getVersion() + " by &5Brianna <3!"));
console.sendMessage(TextComponent.formatText("&7EpicSpawners " + this.getDescription().getVersion() + " by &5Songoda <3!"));
console.sendMessage(TextComponent.formatText("&7Action: &cDisabling&7..."));
console.sendMessage(TextComponent.formatText("&a============================="));
}

View File

@ -15,7 +15,7 @@ public class CommandEpicSpawners extends AbstractCommand {
@Override
protected ReturnType runCommand(EpicSpawnersPlugin instance, CommandSender sender, String... args) {
sender.sendMessage("");
sender.sendMessage(TextComponent.formatText(References.getPrefix() + "&7Version " + instance.getDescription().getVersion() + " Created with <3 by &5&l&oBrianna"));
sender.sendMessage(TextComponent.formatText(References.getPrefix() + "&7Version " + instance.getDescription().getVersion() + " Created with <3 by &5&l&oSongoda"));
for (AbstractCommand command : instance.getCommandManager().getCommands()) {
if (command.getPermissionNode() == null || sender.hasPermission(command.getPermissionNode())) {