Skip to content
Snippets Groups Projects
Commit 6805697f authored by Tristimdorion's avatar Tristimdorion
Browse files

Bugfix: don't let girl in charge change position on first round or when the position is locked.

Bugfix: transitions where called with round_choice, but should be called with position_choice.

(cherry picked from commit 59acb0df)
parent cbf4a3d0
No related branches found
No related tags found
No related merge requests found
......@@ -254,7 +254,7 @@ label fuck_person_bugfix(the_person, private= True, start_position = None, start
$ has_taken_control = False
while not finished:
if girl_in_charge:
if not position_choice is None and position_choice.skill_tag == "Foreplay" and not mc.recently_orgasmed:
if not position_choice is None and position_choice.skill_tag == "Foreplay" and not mc.recently_orgasmed and not first_round and not position_locked:
# girl has got you hard again, now let her pick an actual sex position (clear foreplay position)
$ position_choice = None
......@@ -270,7 +270,7 @@ label fuck_person_bugfix(the_person, private= True, start_position = None, start
$ position_choice.call_taboo_break(the_person, mc.location, object_choice)
$ the_person.break_taboo(position_choice.associated_taboo)
else:
$ position_choice.call_transition(round_choice, the_person, mc.location, object_choice)
$ position_choice.call_transition(position_choice, the_person, mc.location, object_choice)
if position_choice is None: #There's no position we can take
"[the_person.title] can't think of anything more to do with you."
......@@ -295,7 +295,7 @@ label fuck_person_bugfix(the_person, private= True, start_position = None, start
$ position_choice.call_taboo_break(the_person, mc.location, object_choice)
$ the_person.break_taboo(position_choice.associated_taboo)
else:
$ position_choice.call_transition(round_choice, the_person, mc.location, object_choice)
$ position_choice.call_transition(position_choice, the_person, mc.location, object_choice)
$ round_choice = "Continue"
else:
# Don't show control message, it breaks the flow, because it pops up every round.
......
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