mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-19 13:55:00 +00:00
Removed /cmdlist (useless)
This commit is contained in:
parent
b1202c7871
commit
a8b4f1d950
@ -1,51 +0,0 @@
|
|||||||
package me.StevenLawson.TotalFreedomMod.Commands;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Map.Entry;
|
|
||||||
import org.apache.commons.lang.StringUtils;
|
|
||||||
import org.bukkit.command.Command;
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.plugin.Plugin;
|
|
||||||
import org.bukkit.plugin.PluginDescriptionFile;
|
|
||||||
|
|
||||||
@CommandPermissions(level = AdminLevel.ALL, source = SourceType.BOTH)
|
|
||||||
@CommandParameters(description = "Show all commands for all server plugins.", usage = "/<command>")
|
|
||||||
public class Command_cmdlist extends TFM_Command
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
||||||
{
|
|
||||||
List<String> commands = new ArrayList<String>();
|
|
||||||
|
|
||||||
for (Plugin p : server.getPluginManager().getPlugins())
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
PluginDescriptionFile desc = p.getDescription();
|
|
||||||
Map<String, Map<String, Object>> map = (Map<String, Map<String, Object>>) desc.getCommands();
|
|
||||||
|
|
||||||
if (map != null)
|
|
||||||
{
|
|
||||||
for (Entry<String, Map<String, Object>> entry : map.entrySet())
|
|
||||||
{
|
|
||||||
String command_name = (String) entry.getKey();
|
|
||||||
commands.add(command_name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Throwable ex)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Collections.sort(commands);
|
|
||||||
|
|
||||||
sender.sendMessage(StringUtils.join(commands, ","));
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user