ID:1485291
 
Applies to:DM Language
Status: Open

Issue hasn't been assigned a status value.
Currently, as I progress with the updates for Server Manager, I am still guessing how would I approach to determine wether or not a flag will be enabled, the easier way for this to be accomplished would simply be to generate the args to startup() within a list and then pass it with arglist()
Example:
var/lst/config = list(Path,Port,HostMode)
for(var/v in world.configFlags)
if(!v in config)config.Add(v)
var/address = startup(arglist(config))


I may be wrong but I don't see why this is not the current behavior for this task. Not to mention I still didn't figure out how to do a work-around this.