diff --git a/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg b/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg index 6146549..39d9dae 100644 --- a/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg +++ b/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg @@ -259,7 +259,7 @@ Centering On Player Zoom Level = 0.15 # Setting type: Single # Default value: 0 # Acceptable value range: From 0 to 15 -Main map zoom = 15 +Main map zoom = 1.342218 ## The keyboard shortcut to peek at the map # Setting type: KeyboardShortcut diff --git a/plugins/basic_games/games/game_spt.py b/plugins/basic_games/games/game_spt.py index 074101f..7ea8513 100644 --- a/plugins/basic_games/games/game_spt.py +++ b/plugins/basic_games/games/game_spt.py @@ -31,6 +31,13 @@ class SPTGame(BasicGame, mobase.IPluginFileMapper): def executables(self) -> List[mobase.ExecutableInfo]: execs = super().executables() + info = [ + ["Multiplayer", "SPT.Launcher.exe"], + ] + gamedir = self.gameDirectory() + return [ + mobase.ExecutableInfo(inf[0], QFileInfo(gamedir, inf[1])) for inf in info + ] """ A bat script file to bridge the environment to server and launcher. @@ -64,7 +71,7 @@ endlocal workaround.close() execs.append( - mobase.ExecutableInfo("Launch SP Tarkov", QFileInfo(workaroundPath)) + mobase.ExecutableInfo("Singleplayer", QFileInfo(workaroundPath)) ) execs.pop(0) return execs