From 3c34d60745fae617df0fe6861dd1c3c3093d4209 Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Sun, 16 Jul 2023 17:58:39 +0100 Subject: [PATCH] Bug fix * Rebuild image on init to avoid displaying nulls --- game/scripts/doll/main.rpy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game/scripts/doll/main.rpy b/game/scripts/doll/main.rpy index 5bda4655..450eedfc 100644 --- a/game/scripts/doll/main.rpy +++ b/game/scripts/doll/main.rpy @@ -75,6 +75,8 @@ init python: self.modpath = "mods/" + posixpath.normpath(modpath) if modpath else "" + self.build_image() + # Add doll name to global doll states store try: renpy.store.states.dolls.add(name)