We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffae0f4 commit 26ab6a3Copy full SHA for 26ab6a3
NitroxLauncher/LauncherLogic.cs
@@ -186,6 +186,11 @@ internal async Task StartSingleplayerAsync()
186
187
internal async Task StartMultiplayerAsync()
188
{
189
+ if (string.IsNullOrWhiteSpace(subnauticaPath) || !Directory.Exists(subnauticaPath))
190
+ {
191
+ NavigateTo<OptionPage>();
192
+ throw new Exception("Location of Subnautica is unknown. Set the path to it in settings.");
193
+ }
194
#if RELEASE
195
if (Process.GetProcessesByName("Subnautica").Length > 0)
196
0 commit comments