If I have a plugin editing the server whitelist will I need to reload the whitelist every time an edit is made? How is this accomplished in a plugin?
As far as I see the whitelist is only being loaded from two locations. From the BanAPI constructor: Go to line From the BanAPI command handler: Go to line You can't use the constructor of BanAPI to reload the whitelist, so you'll have to run '/whitelist reload' from your plugin. PHP: <?phpprivate function reloadWhitelist(){ $this->api->ban->commandHandler('whitelist', array('reload'), null, 'whitelist');}?> (I haven't tested this!)