Skip to content
Snippets Groups Projects
Commit ac8c0cfd authored by GayRaccoon's avatar GayRaccoon
Browse files

Bugfix for the Whitney toilets initial event not accounting for herms

Another Narcolepsy bug, this time related to the game not accounting for herms in a particular piece of event text. In the initial Whitney toilets event, when Whitney shoves you into the bathroom, it doesn't account for herms and drops them into the <<else>> case, which is the boys' bathroom, when it should actually be the same bathroom that Whitney uses. I went ahead and fixed this, adding an <<elseif>> for if the player is a herm and using the <<nnpc_gendery "Whitney">> widget to fetch Whitney's pronoun gender. I don't think this presently needs any further updating *unless* you think Whitney should force Obligate Crossdressers to use the bathroom of their birth gender instead of the gender they prefer to pass as, which would make sense.
parent 7da77c5f
No related branches found
No related tags found
1 merge request!880Bugfix for the Whitney toilets initial event not accounting for herms
......@@ -2409,7 +2409,7 @@ They tear off your clothing and toss it up onto a nearby roof. You're left helpl
<<person1>>
<<set $whitney_toilet to 1>>
Whitney shoves you into the <<if $player.gender is "m">>girls'<<else>>boys'<</if>> toilets.
Whitney shoves you into the <<if $player.gender is "m">>girls'<<elseif $player.gender is "h">><<nnpc_gendery "Whitney">>s'<<else>>boys'<</if>> toilets.
<br><br>
"The rest of you make sure <<pshe>> follows the rule," <<he>> says, turning to <<his>> friends. "Got it?" <<His>> friends nod, casting lecherous looks up and down your body. "Then it's settled." <<He>> turns back to you. "See you later, slut."
<br><br>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment