Skip to content

Commit 099127b

Browse files
committed
Fix (workaround) for bugged RB link mode with Python 3.12
1 parent 176930a commit 099127b

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

games/game_cyberpunk2077.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def apply(self) -> bool:
289289
class Cyberpunk2077Game(BasicGame):
290290
Name = "Cyberpunk 2077 Support Plugin"
291291
Author = "6788, Zash"
292-
Version = "2.3"
292+
Version = "2.3.1"
293293

294294
GameName = "Cyberpunk 2077"
295295
GameShortName = "cyberpunk2077"
@@ -342,7 +342,10 @@ def init(self, organizer: mobase.IOrganizer) -> bool:
342342
{
343343
"usvfsmode": False,
344344
"linkmode": False,
345-
"linkonlymode": True, # RootBuilder v4.5
345+
# Available with RootBuilder v4.5+
346+
# Currently bugged / incompatible with MO 2.5.2 (Python 3.12)
347+
# https://github.com/Kezyma/ModOrganizer-Plugins/issues/36
348+
"linkonlymode": False,
346349
"backup": True,
347350
"cache": True,
348351
"autobuild": True,

0 commit comments

Comments
 (0)