Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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