From 9c41933179ff2b117050187f95346f22358d273a Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Mon, 22 Jan 2024 21:23:35 +0000 Subject: [PATCH] Save 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 cd28784f..8bbb3cfd 100644 --- a/game/scripts/utility/updater.rpy +++ b/game/scripts/utility/updater.rpy @@ -177,6 +177,11 @@ init python: getattr(store, "her_ev_cumslut_public_t5_e2_hub").req = "states.her.tier == 5" getattr(store, "her_ev_cumslut_public_t5_e3_hub").req = "states.her.tier == 5" + for i in states.dolls: + doll = getattr(store, i) + + doll.body.matrix = IdentityMatrix() + if current > latest: raise Exception("Loaded save file is incompatible. (Save Version: {}, Game Version: {})".format(current, latest))