return;
//Checks The Access and notify requester if requester access it not allowed for that command
if(!AdminCommandAccessRights.getInstance().hasAccess(_command, activeChar.getAccessLevel()))
{
activeChar.sendMessage("You don't have the access right to use this command!");
_log.log(Level.WARNING, "Character " + activeChar.getName() + " tried to use admin command " + _command + ", but doesn't have access to it!");
return;
}
//gets the Handler of That Commmand