Skip to content

Commit 951adf5

Browse files
committed
Fixed incorrect meta in raincode.
1 parent d7c52c5 commit 951adf5

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

games/game_payday3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ def moveTreeContent(
162162

163163
for subentry in entry:
164164
mod_file = subentry.name()
165+
165166
if subentry.isDir() and mod_file.casefold() == destination_root:
166167
continue
167168

@@ -213,10 +214,10 @@ def showModDetectionDialog(self) -> set[int] | None:
213214
selectButtons = QHBoxLayout()
214215
selectAllButton = QPushButton("Select All")
215216
selectNoneButton = QPushButton("Select None")
216-
selectAllButton.clicked.connect( # type: ignore # type: ignore
217+
selectAllButton.clicked.connect( # type: ignore
217218
lambda: self.setDialogSelection(listWidget, True)
218219
)
219-
selectNoneButton.clicked.connect( # type: ignore # type: ignore
220+
selectNoneButton.clicked.connect( # type: ignore
220221
lambda: self.setDialogSelection(listWidget, False)
221222
)
222223
selectButtons.addWidget(selectAllButton)

games/game_raincode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,10 +403,10 @@ class RainCodePlusGame(BasicGame):
403403
Author = "ModWorkshop"
404404
CategorySource = "modworkshop"
405405
Version = "1"
406-
GameName = "Windrose"
406+
GameName = "Master Detective Archives: RAIN CODE Plus"
407407
GameLauncher = "RainCodePlus.exe"
408408
GameShortName = "masterdetectivearchivesraincodeplus"
409-
GameSteamId = 903950
409+
GameSteamId = 2903950
410410
GameBinary = "RainCodePlus/Binaries/Win64/RainCodePlus-Win64-Shipping.exe"
411411
GameDataPath = "RainCodePlus"
412412
GameDataUE4SSRoot = "Binaries/Win64"

0 commit comments

Comments
 (0)