Inceton fucked up when he migrated his latest LustyVerse Slut/Angle button code into Mia2...
3 hours on my end wasted finding the culprit but if one of y'all are a supporter and have access to his discord, share this with him if you want (I don't care really, I've already fixed it for the pending mod update)
This won't make sense to most folks but it most certainly will make sense to him.... ugh.
Python:
# SanchoNote: this is fine, a clean migration of LustyVerse code...no problem here (but see the below code snippet)
init python:
def hide_angler():
renpy.hide_screen("angle_button")
renpy.hide_screen("angler")
def hide_nc():
renpy.hide_screen("nc_screen")
renpy.hide_screen("nc_button")
def hide_s_angler():
renpy.hide_screen("s_angle_button") # SanchoNote: see issue in below code snippet
renpy.hide_screen("s_angler")
Python:
# SanchoNote: Dev, you fucked up here. Either change the screen name to "s_angle_button"
# and change its reference throughout the entire VN ... OR... (my suggestion for easiest fix):
# change the tag to "slut_angle_button" and change the above code snippet in the function "def hide_s_angler():"
# to be "renpy.hide_screen("slut_angle_button")"
screen slut_angle_button:
tag s_angle_button # SanchoNote: the tag does not match any screen since "screen s_angle_button" doesn't exist anywhere.
zorder 1
$ temp = renpy.get_showing_tags(layer='master')
$ current_scene_name = temp.pop()
...