Hey guys. I've just moved from the base game to this mod (maybe I'm to blame for the abandonment-not-abandonment of the original, the correlation is certainly there
). In any case, I'm in need of some scripting advice: in the base game, I was able to mod sex_mechanics.rpy to set the energy of both the mc and the_person to max on each iteration of the interaction loop like so:
Python:
if round_choice is None: #If there is no set round_choice
#TODO: Add a varient of this list when the girl is in control to ask if you want to resist or ask/beg for something.
$ option_list = []
python:
print("begin energy label")
# insert energy reset
the_person.energy, mc.energy = the_person.max_energy, mc.max_energy
(I inserted the last three lines)
When I insert the same code in the same place in sex_mechanics.rpy in the mod, it's as if the game is totally ignoring this addition, since it doesn't log to the console nor does it change the energy levels of the mc or the_person. Please let me know if I'm dumb or if the mod changes the script structure of the game, and how I can fix either issue (even though the former is quite challenging, I understand)