File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments