Skip to content

Commit

Permalink
Cyberpunk plugin update for MO 2.5.2 (ModOrganizer2#150)
Browse files Browse the repository at this point in the history
* Cyberpunk plugin version bump v2.3
* Fix (workaround) for bugged RB link mode with Python 3.12
  • Loading branch information
ZashIn authored Jul 15, 2024
1 parent 71dbb8c commit e88d2d2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions games/game_cyberpunk2077.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def apply(self) -> bool:
class Cyberpunk2077Game(BasicGame):
Name = "Cyberpunk 2077 Support Plugin"
Author = "6788, Zash"
Version = "2.2.3"
Version = "2.3.1"

GameName = "Cyberpunk 2077"
GameShortName = "cyberpunk2077"
Expand Down Expand Up @@ -342,7 +342,10 @@ def init(self, organizer: mobase.IOrganizer) -> bool:
{
"usvfsmode": False,
"linkmode": False,
"linkonlymode": True, # RootBuilder v4.5
# Available with RootBuilder v4.5+
# Currently bugged / incompatible with MO 2.5.2 (Python 3.12)
# https://github.com/Kezyma/ModOrganizer-Plugins/issues/36
"linkonlymode": False,
"backup": True,
"cache": True,
"autobuild": True,
Expand Down

0 comments on commit e88d2d2

Please sign in to comment.