lgsm local mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
425 B

# Game Settings File
# _parms_plusminus
# Parameter parsing with "+" and "-" sorting
fn_import_game_settings include/parms
# This is the way we create a script that collates and parses the parameters
fn_parms(){
parms_minus="$(fn_process_parmlist "\-" ${settingsdir}/parms_minus)"
parms_plus="$(fn_process_parmlist "\+" ${settingsdir}/parms_plus)"
parms="$(eval "echo \"${parms_minus} ${server_parms} ${parms_plus}\"")"
}