From ceb4678b36e530dc0a150d89ba147ac6d4de70cc Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Sat, 15 Jul 2023 21:57:41 +0100 Subject: [PATCH] Saves compatibility --- game/scripts/utility/updater.rpy | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/game/scripts/utility/updater.rpy b/game/scripts/utility/updater.rpy index 472431e3..f45811f7 100644 --- a/game/scripts/utility/updater.rpy +++ b/game/scripts/utility/updater.rpy @@ -147,6 +147,11 @@ init python: mods_list = getattr(persistent, "mods_list", _dict()) or _dict() setattr(persistent, "mods_list", _dict(mods_list)) + # Fix event issue with Cho + ev = getattr(store, "cho_ev_inspect_her_body_t2_e3") + if ev.completed and not states.cho.ev.inspect_her_body.T2_E3_complete: + states.cho.ev.inspect_her_body.T2_E3_complete = True + if current > latest: raise Exception("Loaded save file is incompatible. (Save Version: {}, Game Version: {})".format(current, latest))