Working on some new NPCs I found something interesting. Not sure if it'll lead to a fix for this bug or not but considering the behavior I thought it worth sharing.
Specifically I was playing with a couple of different escorts and found that this always worked...
Code: Select all
make_escort = {
{type = "spiderkin", name="weaver young", number=2, no_subescort=true}, -- level 7 monster
},
Code: Select all
make_escort = {
{type = "spiderkin", name="weaver patriarch", number=2, no_subescort=true}, -- level 27 monster
},
When I took the second escort code to the east it generated the escorts without issue.
Anecdotal evidence... the summon code would only spawn the young in the trollmire. But that could have just been raw chance.
Code: Select all
summon = {
{type = "spiderkin", subtype = "spider", name="weaver young", number=2, hasxp=false},
{type = "spiderkin", subtype = "spider", name="weaver patriarch", number=1, hasxp=false},
},