mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-20 14:25:00 +00:00
293ea04c56
* rename everything containing staff back to admin (as requested by ryan i've renamed commands like slconfig to saconfig but left "slconfig" as an alias) * format almost every file correctly * a few other improvements
33 lines
1.0 KiB
Java
33 lines
1.0 KiB
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Player;
|
|
|
|
@CommandPermissions(level = Rank.ADMIN, source = SourceType.BOTH)
|
|
@CommandParameters(description = "Essentials Interface Command - Remove the nickname of all players on the server.", usage = "/<command>")
|
|
public class Command_denick extends FreedomCommand
|
|
{
|
|
|
|
@Override
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
{
|
|
if (!plugin.esb.isEnabled())
|
|
{
|
|
msg("Essentials is not enabled on this server.");
|
|
return true;
|
|
}
|
|
|
|
FUtil.adminAction(sender.getName(), "Removing all nicknames", false);
|
|
|
|
for (Player player : server.getOnlinePlayers())
|
|
{
|
|
plugin.esb.setNickname(player.getName(), null);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|