From 471553282a076433a100b3445aaf375e66c48bd9 Mon Sep 17 00:00:00 2001 From: Totally a booplicate <53382877+Booplicate@users.noreply.github.com> Date: Sun, 5 Jan 2025 00:47:07 +0300 Subject: [PATCH] fix: rm unused, this override moved to overrides.rpy --- Monika After Story/game/0utils.rpy | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Monika After Story/game/0utils.rpy b/Monika After Story/game/0utils.rpy index e98920693a..b9439c74c7 100644 --- a/Monika After Story/game/0utils.rpy +++ b/Monika After Story/game/0utils.rpy @@ -795,13 +795,3 @@ python early in mas_utils: return int(value) except: return default - -# Override to completely disable Ren'Py's signature verification """f e a t u r e""" -# NOTE: Without this, Ren'Py will literally replace the persistent data with a blank file if signature verification fails. -# And the game will not inform the user, making backups/transfers impossible. -# Btw this apparently comes with the tagline "There is intentionally no way to disable this feature." lol -python early: - def verify_data_override(data, signatures, check_verifying=True): - return True - - renpy.savetoken.verify_data = verify_data_override