init 999 python hide: class RenpyFwd: seen_image = seen_label = lambda *_: True def __getattr__(self, name): return getattr(renpy, name) renpyfwd = RenpyFwd() class PatchedContext(renpy.sl2.slast.SLContext): def __init__(self, *args, **kwargs): super(PatchedContext, self).__init__(*args, **kwargs) if renpy.display.screen.current_screen().screen_name[0].endswith("gallery"): self.scope["renpy"] = renpyfwd renpy.sl2.slast.SLContext = PatchedContext Replay.locked = property(lambda _: False, lambda *_: None)