This commit is contained in:
speedxx 2020-06-19 19:42:56 -04:00
parent 9f2fd4ad87
commit 110963efc7
3 changed files with 2 additions and 6 deletions

View file

@ -59,10 +59,6 @@
<id>jitpack.io</id> <id>jitpack.io</id>
<url>https://jitpack.io</url> <url>https://jitpack.io</url>
</repository> </repository>
<repository>
<id>papermc</id>
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
<repository> <repository>
<id>spigotmc-repo</id> <id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>

View file

@ -51,7 +51,7 @@ public class GuildTagCommand extends GBase implements CommandExecutor
return true; 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 + "\""); sender.sendMessage(ChatColor.GREEN + "Guild tag set to \"" + GUtil.color(args[1]) + ChatColor.GREEN + "\"");
return true; return true;
} }

View file

@ -16,7 +16,7 @@ public class TfGuildsCommand extends GBase implements CommandExecutor
{ {
if (args.length == 0) 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(String.format(GUtil.color("&2Version &av%s"), plugin.getDescription().getVersion()));
sender.sendMessage(GUtil.color("&2Developed by &aspeednt & supernt")); sender.sendMessage(GUtil.color("&2Developed by &aspeednt & supernt"));
return true; return true;