diff --git a/dzgui/managers/offline.py b/dzgui/managers/offline.py index 15d8ece..a63d42b 100644 --- a/dzgui/managers/offline.py +++ b/dzgui/managers/offline.py @@ -12,7 +12,7 @@ from dzgui.init.proc import is_dayz_running from dzgui.managers.threading import call_on_thread, StoredFunc, ThreadingManager from dzgui.model.model_factory import ModelFactory from dzgui.strings import dialogs -from dzgui.util.symlink import create_custom_symlinks, symlink_mission +from dzgui.util.symlink import create_custom_symlinks, rebuild_symlinks, symlink_mission from dzgui.views.dialogs.filepicker import FolderPicker if TYPE_CHECKING: @@ -96,6 +96,8 @@ class OfflineManager: if len(local_mods) > 0: combined_mods.extend(local_mods) + config = self.controller.get_prefs().paths.config + rebuild_symlinks(config) if len(custom_mods) > 0: new_symlinks = create_custom_symlinks( diff --git a/pyproject.toml b/pyproject.toml index 17af853..3f66822 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ description = "DayZ server browser and mod manager for Linux" authors = [ {name = "aclist"} ] -version = "7.0.0b12" +version = "7.0.0b13" license = "GPL-3.0-or-later" license-files = ["LICENSE"] readme = "README.md"