Odds error
I'm getting an error code which I don't understand pls help
At the moment, when ancestry is dragonborn the skin color in the image layer combiner should be any color of the rainbow, and with any other ancestry it should be limited. I've tried to mark the variables with ^[r.species != "dragonborn"] etc but it's telling me that's not an allowed odds
the section is marked with //RELEVANT SECTION OF CODE//
Thank you in advance :)
https://perchance.org/dc20-npc-with-image#editOpen linkView original on lemmy.world
Yeah the second/third/etc. errors in the list can unfortunately be misleading - trick is to always solve the top one first since it's likely the root cause of all the others:
This is a poorly worded error message (directly from the browser's JS engine) which basically means "I tried to look at the 'species' property of
rbutrwas undefined". It's because you definerafterfhinstead of before. So when it tries to calculate the odds, which depends onrbeing defined, it breaks.So to fix it you can change this:
to this:
😭 thank you so much for explaining that, works perfectly now :)))