Disable /link and /unlink help messages

This commit is contained in:
cnr 2017-03-23 23:22:33 -05:00
parent 3b2c50efa3
commit d95ed8d749
2 changed files with 2 additions and 6 deletions

View File

@ -1,6 +1,5 @@
package mineplex.core.website;
import org.bukkit.ChatColor;
import org.bukkit.entity.Player;
import mineplex.core.command.CommandBase;
@ -20,7 +19,7 @@ public class LinkCommand extends CommandBase<WebsiteLinkManager>
{
if (args.length < 1)
{
UtilPlayer.message(caller, F.help("/" + _aliasUsed + " XXX-XXX-XXX", "Begins linking your Minecraft account with your website link code.", Rank.ALL, ChatColor.GREEN));
//UtilPlayer.message(caller, F.help("/" + _aliasUsed + " XXX-XXX-XXX", "Begins linking your Minecraft account with your website link code.", Rank.ALL, ChatColor.GREEN));
}
else
{

View File

@ -1,12 +1,9 @@
package mineplex.core.website;
import org.bukkit.ChatColor;
import org.bukkit.entity.Player;
import mineplex.core.command.CommandBase;
import mineplex.core.common.Rank;
import mineplex.core.common.util.F;
import mineplex.core.common.util.UtilPlayer;
public class UnlinkCommand extends CommandBase<WebsiteLinkManager>
{
@ -20,7 +17,7 @@ public class UnlinkCommand extends CommandBase<WebsiteLinkManager>
{
if (args.length < 1)
{
UtilPlayer.message(caller, F.help("/" + _aliasUsed + " <Player>", "Removes a link to a forum and in-game account.", Rank.ADMIN, ChatColor.RED));
//UtilPlayer.message(caller, F.help("/" + _aliasUsed + " <Player>", "Removes a link to a forum and in-game account.", Rank.ADMIN, ChatColor.RED));
}
else
{