Merge pull request #22 from EzioTheDeadPoet/update-darkest-dungeon

changed binary to non steam specific one
This commit is contained in:
Mikaël Capelle
2020-12-27 18:23:17 +01:00
committed by GitHub
+5 -5
View File
@@ -18,15 +18,15 @@ class DarkestDungeonGame(BasicGame):
GameNexusId = 804
GameSteamId = 262060
GameGogId = 1719198803
GameBinary = "_windows//darkest.exe"
GameBinary = "_windowsnosteam//darkest.exe"
GameDataPath = ""
def executables(self):
path = QFileInfo(self.gameDirectory(), "_windows/darkest.exe")
if not path.exists():
path = QFileInfo(self.gameDirectory(), "_windowsnosteam/darkest.exe")
return [
mobase.ExecutableInfo(
"Darkest Dungeon",
QFileInfo(self.gameDirectory(), "_windows//darkest.exe"),
),
mobase.ExecutableInfo("Darkest Dungeon", path),
]
def savesDirectory(self):