We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9a7f19 commit cce1894Copy full SHA for cce1894
src/Flarial.Launcher.Runtime/Client/FlarialClient.cs
@@ -30,7 +30,7 @@ internal FlarialClient() { }
30
protected abstract string DownloadUri { get; }
31
protected abstract string WindowClass { get; }
32
33
- public bool Launch(bool initialized)
+ public bool? Launch(bool initialized)
34
{
35
if (Minecraft.GetWindow(WindowClass) is { } client)
36
@@ -43,7 +43,7 @@ public bool Launch(bool initialized)
43
}
44
45
Library library = new(FileName);
46
- if (!library.IsLoadable) return false;
+ if (!library.IsLoadable) return null;
47
48
return Injector.Launch(initialized, library) is { };
49
0 commit comments