Unlocking options in yarn with boolean checks

Sorry if I’m not explaining this very well.
So I’m working on a sort of point and click mystery game. I’m trying to make a quest select system using yarn, because that would be the easiest for me to do based on what I already have set up. Essentially, more quests will unlock based on the already completed quests. Below is the testing code I’m using:


The way it should work is that when all booleans are false, only the top two and the bottom one is shown, and it should check for each individual boolean in between and show that option if it’s true. However, I’ve found that it only shows the top two when all booleans are false. Is there something I’m missing, or will I need to figure out a new system?

I have figured out a sort-of solution but I really don’t want to do it because the solution involves me trying to account for every possible combination of unlocked quests and I cannot express how much I do not want to do that.