int access = Integer.parseInt(params[1]);
Rank rank = Rank.get(access);
if(rank == null)
throw new CommandFailedWithDetailsException("That access level does not exist!");
rsCommand.setRank(rank);
rsCommand.updateRow();
user.sendChat("Successfully changed the authorization required for command [" + rsCommand.getName() + "] from [" + oldAccess + "] to [" + access + "]", whisperBack);
} catch(NumberFormatException e) {
throw new InvalidUseException();
}