ttyrke
An error on the Negan quest 2, when you give him the 4 girls. (name="Negan - fuel slaves")
To be OK, the _girls[] has to sorted in inverse since you rearrange the list (slaves or guests) after each girl deleted.
For exemple ["slave:7,slave:4,slave:3,slave:0"]:
You delete the 7, rearrange the slaves list, the 4 will still be the 4 in the slaves list and still match the _girls[] list.. and so and so... that's OK.
If you have ["slave:0,slave:3,slave:4,slave:7"]:
You delete the 0, rearrange the slaves list, the 3 will become the 2 in the slaves list, but will stay 3 in the _girls list: No match anymore and another slave than the good one will be deleted on the next round.
Good luck to understand what I mean, even I understand less now that I (tried to) explained it
edit:
I just tried to add a sort.reverse in the "Negan - fuel slaves" passage, it seems to work:
JavaScript:
set _girls = setup.neganQuest2HaveGirls()
run _girls.sort().reverse() /* surely ugly, but it works */
companionRemove _girls[0]
companionRemove _girls[1]
.....