Skip to content

Commit 3ff76e2

Browse files
authored
Fix Dispatch Executable and missing README Info (#229)
1 parent b21772f commit 3ff76e2

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ You can rename `modorganizer-basic_games-xxx` to whatever you want (e.g., `basic
5252
| Darkest Dungeon — [GOG](https://www.gog.com/game/darkest_dungeon) / [STEAM](https://store.steampowered.com/app/262060/Darkest_Dungeon/) | [erri120](https://github.com/erri120) | [game_darkestdungeon.py](games/game_darkestdungeon.py) | <ul><li>save slot parsing</li><li>mod data checker</li></ul> |
5353
| Dark Messiah of Might & Magic — [STEAM](https://store.steampowered.com/app/2100/Dark_Messiah_of_Might__Magic/) | [Holt59](https://github.com/holt59/) | [game_darkmessiahofmightandmagic.py](games/game_darkmessiahofmightandmagic.py) | <ul><li>save game preview</li></ul> |
5454
| Dark Souls — [STEAM](https://store.steampowered.com/app/211420/DARK_SOULS_Prepare_To_Die_Edition/) | [Holt59](https://github.com/holt59/) | [game_darksouls.py](games/game_darkestdungeon.py) | |
55+
| Dispatch — [STEAM](https://store.steampowered.com/app/2592160/Dispatch/) | [Syer10](https://github.com/Syer10) | [game_dispatch.py](games/game_dispatch.py) | |
5556
| Divinity: Original Sin (Classic) — [STEAM](https://store.steampowered.com/app/230230/Divinity_Original_Sin_Classic/) | [LostDragonist](https://github.com/LostDragonist/) | [game_divinityoriginalsin.py](games/game_divinityoriginalsin.py) | <ul><li>save game preview</li></ul> |
5657
| Divinity: Original Sin (Enhanced Edition) — [STEAM](https://store.steampowered.com/app/373420/Divinity_Original_Sin__Enhanced_Edition/) | [LostDragonist](https://github.com/LostDragonist/) | [game_divinityoriginalsinee.py](games/game_divinityoriginalsinee.py) | <ul><li>save game preview</li><li>mod data checker</li></ul> |
5758
| Dragon's Dogma: Dark Arisen — [GOG](https://www.gog.com/game/dragons_dogma_dark_arisen) / [STEAM](https://store.steampowered.com/app/367500/Dragons_Dogma_Dark_Arisen/) | [EzioTheDeadPoet](https://github.com/EzioTheDeadPoet) | [game_dragonsdogmadarkarisen.py](games/game_dragonsdogmadarkarisen.py) | |

games/game_dispatch.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pathlib import Path
22

3-
from PyQt6.QtCore import QDir
3+
from PyQt6.QtCore import QDir, QFileInfo
44

55
import mobase
66

@@ -28,7 +28,7 @@ def __init__(self):
2828
class Dispatch(BasicGame, mobase.IPluginFileMapper):
2929
Name = "Dispatch Support Plugin"
3030
Author = "Syer10"
31-
Version = "0.1.0"
31+
Version = "0.1.1"
3232

3333
GameName = "Dispatch"
3434
GameShortName = "dispatch"
@@ -56,7 +56,13 @@ def init(self, organizer: mobase.IOrganizer) -> bool:
5656

5757
def executables(self):
5858
return [
59-
mobase.ExecutableInfo("Dispatch", self.GameBinary),
59+
mobase.ExecutableInfo(
60+
"Dispatch",
61+
QFileInfo(
62+
self.gameDirectory(),
63+
self.GameBinary,
64+
),
65+
),
6066
]
6167

6268
## SAVE

0 commit comments

Comments
 (0)