mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-07-01 20:46:41 +00:00
Forgot class paths, remove things lombok covers, and optimize imports
This commit is contained in:
@ -134,11 +134,6 @@ public abstract class FreedomCommand extends AbstractCommandBase<TotalFreedomMod
|
||||
msg(sender, message, ChatColor.GRAY);
|
||||
}
|
||||
|
||||
public CommandParameters getParams()
|
||||
{
|
||||
return this.params;
|
||||
}
|
||||
|
||||
protected void msg(final String message)
|
||||
{
|
||||
msg(sender, message);
|
||||
@ -164,16 +159,12 @@ public abstract class FreedomCommand extends AbstractCommandBase<TotalFreedomMod
|
||||
return plugin.pl.getData(player);
|
||||
}
|
||||
|
||||
public CommandPermissions getPerms()
|
||||
{
|
||||
return this.perms;
|
||||
}
|
||||
|
||||
public static FreedomCommand getFrom(Command command)
|
||||
{
|
||||
try
|
||||
{
|
||||
return (FreedomCommand) ((FreedomCommandExecutor) (((PluginCommand) command).getExecutor())).getCommandBase();
|
||||
return (FreedomCommand)((FreedomCommandExecutor)(((PluginCommand)command).getExecutor())).getCommandBase();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
Reference in New Issue
Block a user