Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Use explicit types in patcher
Browse files Browse the repository at this point in the history
  • Loading branch information
misandrie committed Nov 28, 2023
1 parent cf86fbd commit 55a1001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marsey/MarseyPatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static void Boot(Assembly? robClientAssembly)
}

// Manage game assemblies
GameAssemblyManager.GetGameAssemblies(out var clientAss, out var robustSharedAss, out var clientSharedAss);
GameAssemblyManager.GetGameAssemblies(out Assembly? clientAss, out Assembly? robustSharedAss, out Assembly? clientSharedAss);
AssemblyFieldHandler.SetAssemblies(clientAss, robustSharedAss, clientSharedAss);

// Prepare marseypatches
Expand Down

0 comments on commit 55a1001

Please sign in to comment.