mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-16 20:36:12 +00:00
521825024e
Signed-off-by: Robinson Gallego <robinson.leal7@gmail.com>
41 lines
1.4 KiB
Java
41 lines
1.4 KiB
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import me.totalfreedom.totalfreedommod.player.FPlayer;
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
import org.apache.commons.lang.StringUtils;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Player;
|
|
|
|
@CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.BOTH)
|
|
@CommandParameters(
|
|
description = "AdminChat - Talk privately with other admins. Using <command> itself will toggle AdminChat on and off for all messages.",
|
|
usage = "/<command> [message...]",
|
|
aliases = "o,ac")
|
|
public class Command_adminchat extends FreedomCommand
|
|
{
|
|
|
|
@Override
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
{
|
|
if (args.length == 0)
|
|
{
|
|
if (senderIsConsole)
|
|
{
|
|
msg("Only in-game players can toggle AdminChat.");
|
|
return true;
|
|
}
|
|
|
|
FPlayer userinfo = plugin.pl.getPlayer(playerSender);
|
|
userinfo.setAdminChat(!userinfo.inAdminChat());
|
|
msg("Toggled Admin Chat " + (userinfo.inAdminChat() ? "on" : "off") + ".");
|
|
}
|
|
else
|
|
{
|
|
plugin.cm.adminChat(sender, StringUtils.join(args, " "));
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|