We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db9023a commit c097a96Copy full SHA for c097a96
1 file changed
Monika After Story/game/overrides.rpy
@@ -20,4 +20,13 @@ init -10 python:
20
## You'll need a block like this for creator defined screen language
21
## Don't use this unless you know you need it
22
python early in mas_overrides:
23
- pass
+ def verify_data_override(data, signatures, check_verifying=True):
24
+ """
25
+ Verify the data in a save token.
26
+
27
+ Originally, this function is used to check against a checksum to verify the persistent should be loaded
28
+ But because we want to allow anyone be able to migrate and transfer their data, we will just return True
29
30
+ return True
31
32
+ renpy.savetoken.verify_data = verify_data_override
0 commit comments