Why ?
There is only a single way to check if a player will be promoted to admin on join, and that is via the "/admin" GUI and seeing if their name has an X in the admin column. This solution does not work when you want to send commands via an rcon interface. You also can not use "game.get_player(name).admin" or "/admins" (in its current state) because neither of them work for a player who has not yet joined the game.
By using the same format as "/banlist" and "/whitelist" it brings consistency between all three lists allowing for easier automation via rcon and for testing that a user was promoted / demoted successfully (yes, integration testing is the main reason I want this). It also avoids the creation of a new command or breaking existing behaviour ("/admins" currently ignores all other input except for "online" and "o").
Thanks for reading
