Skip to content

Commit db6fdcd

Browse files
authored
Fix registration of BasicLocalSavegames feature
its changed to be in line with other basic games, while there likely is a bug involving that line its better addressed in basic games itself.
1 parent 9012030 commit db6fdcd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

games/game_cassettebeasts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def init(self, organizer: mobase.IOrganizer) -> bool:
177177
super().init(organizer)
178178
self.dataChecker = CassetteBeastsModDataChecker(organizer)
179179
self._register_feature(self.dataChecker)
180-
self._register_feature(BasicLocalSavegames(QDir(self.GameDocumentsDirectory)))
180+
self._register_feature(BasicLocalSavegames(self))
181181
self._register_feature(
182182
BasicGameSaveGameInfo(None, getMetadata)
183183
)

0 commit comments

Comments
 (0)