diff --git a/pom.xml b/pom.xml index fe0860a..bd298bb 100644 --- a/pom.xml +++ b/pom.xml @@ -59,10 +59,6 @@ jitpack.io https://jitpack.io - - papermc - https://papermc.io/repo/repository/maven-public/ - spigotmc-repo https://hub.spigotmc.org/nexus/content/repositories/snapshots/ diff --git a/src/main/java/me/totalfreedom/tfguilds/command/GuildTagCommand.java b/src/main/java/me/totalfreedom/tfguilds/command/GuildTagCommand.java index e8bb2e0..db1bbda 100644 --- a/src/main/java/me/totalfreedom/tfguilds/command/GuildTagCommand.java +++ b/src/main/java/me/totalfreedom/tfguilds/command/GuildTagCommand.java @@ -51,7 +51,7 @@ public class GuildTagCommand extends GBase implements CommandExecutor return true; } - GUtil.setTag(GUtil.color(StringUtils.join(args, " ")), guild); + GUtil.setTag(GUtil.color(args[1]) + " ", guild); sender.sendMessage(ChatColor.GREEN + "Guild tag set to \"" + GUtil.color(args[1]) + ChatColor.GREEN + "\""); return true; } diff --git a/src/main/java/me/totalfreedom/tfguilds/command/TfGuildsCommand.java b/src/main/java/me/totalfreedom/tfguilds/command/TfGuildsCommand.java index fe701fe..072ab2b 100644 --- a/src/main/java/me/totalfreedom/tfguilds/command/TfGuildsCommand.java +++ b/src/main/java/me/totalfreedom/tfguilds/command/TfGuildsCommand.java @@ -16,7 +16,7 @@ public class TfGuildsCommand extends GBase implements CommandExecutor { if (args.length == 0) { - sender.sendMessage(GUtil.color("&aTFGuilds &2is a plugin which allows for players to make their own guilds, providing guild chat and guild teleportation.")); + sender.sendMessage(GUtil.color("&aTFGuilds &2is a plugin which allows for players to make their own guilds, providing guild chat, guild teleportation, and more.")); sender.sendMessage(String.format(GUtil.color("&2Version &av%s"), plugin.getDescription().getVersion())); sender.sendMessage(GUtil.color("&2Developed by &aspeednt & supernt")); return true;