We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c0e785 commit 5b4aa6eCopy full SHA for 5b4aa6e
1 file changed
games/game_cassettebeasts.py
@@ -60,6 +60,7 @@ class CassetteBeastsGame(BasicGame):
60
GameBinary = "CassetteBeasts.exe"
61
GameDataPath = appdataenv + "/CassetteBeasts/mods"
62
GameDocumentsDirectory = appdataenv + "/CassetteBeasts"
63
+ GameSavesDirectory = '%GAME_DOCUMENTS%'
64
GameSaveExtension = "gcpf"
65
66
def init(self, organizer: mobase.IOrganizer) -> bool:
@@ -103,7 +104,7 @@ def executableForcedLoads(self) -> list[mobase.ExecutableForcedLoadSetting]:
103
104
return efls
105
106
def iniFiles(self):
- return ["settings.cfg"]
107
+ return ["settings.cfg", "mod_settings.cfg"]
108
109
def initializeProfile(self, directory: QDir, settings: mobase.ProfileSetting):
110
modsPath = self.dataDirectory().absolutePath()
0 commit comments