From 86f95fcfe404065513d7858dad033e071ad2c335 Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Sun, 31 Mar 2024 21:19:28 +0100 Subject: [PATCH] Save compatibility bug fix * Fix broken save state --- game/scripts/utility/updater.rpy | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/game/scripts/utility/updater.rpy b/game/scripts/utility/updater.rpy index 37a8cb91..7b68e490 100644 --- a/game/scripts/utility/updater.rpy +++ b/game/scripts/utility/updater.rpy @@ -214,6 +214,12 @@ init python: if current < 1.461: getattr(store, "ton_accessory_office").zorder = 235 + if current < 1.462: + lun_ev_blowjob_t4_e1.enqueue() + lun_ev_blowjob_t4_e2.enqueue() + lun_ev_blowjob_t4_e3.enqueue() + lun_ev_blowjob_t4_e4.enqueue() + if current > latest: raise Exception(f"Loaded save file is incompatible. (Save Version: {current}, Game Version: {latest})")