Skip to content

Commit e32022e

Browse files
committed
fix: smol upd for override, add TODO
1 parent 16922c5 commit e32022e

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Monika After Story/game/overrides.rpy

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,28 @@ python early in mas_overrides:
4747
4848
The only difference here is that this skips over game savedirs and
4949
'extra' save dirs (so just omissions)
50+
51+
TODO: Find a way to avoid overriding the entire function just
52+
to disable 2 save locations, this is more bug prone
5053
"""
5154
savelocation.quit()
5255
savelocation.quit_scan_thread = False
5356

5457
location = savelocation.MultiLocation()
5558

59+
# 1. User savedir.
5660
location.add(savelocation.FileLocation(renpy.config.savedir))
5761

62+
# # 2. Game-local savedir.
63+
# if (not renpy.mobile) and (not renpy.macapp):
64+
# path = os.path.join(renpy.config.gamedir, "saves")
65+
# location.add(savelocation.FileLocation(path))
66+
67+
# # 3. Extra savedirs.
68+
# for i in renpy.config.extra_savedirs:
69+
# location.add(savelocation.FileLocation(i))
70+
71+
# Scan the location once.
5872
location.scan()
5973

6074
renpy.loadsave.location = location

0 commit comments

Comments
 (0)