mirror of
https://github.com/TotalFreedomMC/TFGuilds.git
synced 2024-12-22 07:55:03 +00:00
fix this
This commit is contained in:
parent
9f2fd4ad87
commit
110963efc7
3 changed files with 2 additions and 6 deletions
4
pom.xml
4
pom.xml
|
@ -59,10 +59,6 @@
|
|||
<id>jitpack.io</id>
|
||||
<url>https://jitpack.io</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>papermc</id>
|
||||
<url>https://papermc.io/repo/repository/maven-public/</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>spigotmc-repo</id>
|
||||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue