mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
Plugin-specific registration fix
This commit is contained in:
parent
4555a7e3f2
commit
4561641d2b
@ -82,10 +82,19 @@ public abstract class FreedomCommand implements CommandExecutor, TabCompleter
|
||||
public void register()
|
||||
{
|
||||
FCommand cmd = new FCommand(this.name);
|
||||
if (this.aliases != null) cmd.setAliases(Arrays.asList(StringUtils.split(this.aliases, ",")));
|
||||
if (this.description != null) cmd.setDescription(this.description);
|
||||
if (this.usage != null) cmd.setUsage(this.usage);
|
||||
getCommandMap().register("", cmd);
|
||||
if (this.aliases != null)
|
||||
{
|
||||
cmd.setAliases(Arrays.asList(StringUtils.split(this.aliases, ",")));
|
||||
}
|
||||
if (this.description != null)
|
||||
{
|
||||
cmd.setDescription(this.description);
|
||||
}
|
||||
if (this.usage != null)
|
||||
{
|
||||
cmd.setUsage(this.usage);
|
||||
}
|
||||
getCommandMap().register("totalfreedommod", cmd);
|
||||
cmd.setExecutor(this);
|
||||
}
|
||||
|
||||
@ -110,10 +119,12 @@ public abstract class FreedomCommand implements CommandExecutor, TabCompleter
|
||||
private final class FCommand extends Command
|
||||
{
|
||||
private FreedomCommand cmd = null;
|
||||
|
||||
private FCommand(String command)
|
||||
{
|
||||
super(command);
|
||||
}
|
||||
|
||||
public void setExecutor(FreedomCommand cmd)
|
||||
{
|
||||
this.cmd = cmd;
|
||||
|
Loading…
Reference in New Issue
Block a user