So if you have a zombie expansion mod and wish to remove a specific zombie from the spawn groups, I can write a remove for each group. But if there are many, many groups, will this work?
<csv xpath="/entitygroups/entitygroup/text()" delim="\n" op="remove" >
CustomZombie1
</csv
Further, say there are two zombies you wish to remove, will this work?
<csv xpath="/entitygroups/entitygroup/text()" delim="\n" op="remove" >
CustomZombie1
CustomZombie2
</csv
I have tested both, and both seem to work. At least there are no errors thrown starting the game and the configs dump looks ok. But am I missing something? I haven't found a lot of information on csv edits in my googling.
<csv xpath="/entitygroups/entitygroup/text()" delim="\n" op="remove" >
CustomZombie1
</csv
Further, say there are two zombies you wish to remove, will this work?
<csv xpath="/entitygroups/entitygroup/text()" delim="\n" op="remove" >
CustomZombie1
CustomZombie2
</csv
I have tested both, and both seem to work. At least there are no errors thrown starting the game and the configs dump looks ok. But am I missing something? I haven't found a lot of information on csv edits in my googling.