From e88d2d2d1546619cd2e6f17d071cdb50bab99866 Mon Sep 17 00:00:00 2001 From: Zash Date: Mon, 15 Jul 2024 08:13:01 +0200 Subject: [PATCH] Cyberpunk plugin update for MO 2.5.2 (#150) * Cyberpunk plugin version bump v2.3 * Fix (workaround) for bugged RB link mode with Python 3.12 --- games/game_cyberpunk2077.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/games/game_cyberpunk2077.py b/games/game_cyberpunk2077.py index 8bdf686..10da96c 100644 --- a/games/game_cyberpunk2077.py +++ b/games/game_cyberpunk2077.py @@ -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" @@ -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,