Almost all plugins use cmd_access(). This doesn't.
Code:
public visible(id,level,cid)
{
if (!(get_user_flags(id)&ADMIN_BAN))
{
return PLUGIN_HANDLED
}
It might have been wise to use level in the bit comparison from the start. (Edit: As _Master_ already suggested.)