Gets the arguments the server has been launched with, excluding the ones * used to edit the configuration files.
// from command-line ./selery --display-name=test -a -b assert(server.args == ["-a", "-b"]);
* Custom arguments can be used by plugins to load optional settings.
@start load() { if(!server.args.canFind("--disable-example")) { this.loadImpl(); } }
See Implementation
Gets the arguments the server has been launched with, excluding the ones * used to edit the configuration files.