You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the problem
I downloaded QModManager 4.0.2.3-201-4-0-2-3-1600476097.exe, installed it on a Windows VM, copied the latest BepInEx folder over to my Mac (10.15.6). While attempting to run mono QModManager.exe, I kept getting a "Could not find Managed directory" error, no matter where I put the BepInEx directory.
to specialize directory names. Unfortunately the directory in question in macOS is ~/Library/ApplicationSupport/Steam/steamapps/common/Subnautica/Subnautica.app/Contents/Resources/Data/Managed, so the check for the managed directory always fails.
I also couldn't run the QModManager.exe with out importing the BepInEx dlls to the local folder since the relative paths require me to execute the file from its own directory?
Workaround
Since the first check expected the Data folder to 3 dirctories down, I placed the BepInEx folder in ~/Library/ApplicationSupport/Steam/steamapps/common/Subnautica/Subnautica.app/Contents/Resources and ran:
cd ~/Library/ApplicationSupport/Steam/steamapps/common/Subnautica/Subnautica.app/Contents/Resources
ln -s Data Subnautica_Data
cd BepInEx/patchers/QModManager
ln -s ../../core/* .
mono QModManager.exe
The text was updated successfully, but these errors were encountered:
Describe the problem
I downloaded
QModManager 4.0.2.3-201-4-0-2-3-1600476097.exe
, installed it on a Windows VM, copied the latestBepInEx
folder over to my Mac (10.15.6). While attempting to runmono QModManager.exe
, I kept getting a "Could not find Managed directory" error, no matter where I put the BepInEx directory.A quick survey of the code
QModManager/Executable/Program.cs
Lines 54 to 55 in 77217a2
../../../Subnautica_Data/Managed
, and can fail with the above error before it callsGetOS
QModManager/Executable/Program.cs
Line 79 in 77217a2
~/Library/ApplicationSupport/Steam/steamapps/common/Subnautica/Subnautica.app/Contents/Resources/Data/Managed
, so the check for the managed directory always fails.I also couldn't run the QModManager.exe with out importing the BepInEx dlls to the local folder since the relative paths require me to execute the file from its own directory?
Workaround
Since the first check expected the Data folder to 3 dirctories down, I placed the
BepInEx
folder in~/Library/ApplicationSupport/Steam/steamapps/common/Subnautica/Subnautica.app/Contents/Resources
and ran:The text was updated successfully, but these errors were encountered: