Skip to content

Commit

Permalink
Made CoreModule.CurrentUniverse static
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-bures committed Dec 29, 2023
1 parent 6291021 commit 7850b0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin_template/swinfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Patch Manager",
"description": "A mod for generic patching needs similar to KSP 1's Module Manager.",
"source": "https://github.com/KSP2Community/PatchManager",
"version": "0.7.1",
"version": "0.7.2",
"version_check": "https://raw.githubusercontent.com/KSP2Community/PatchManager/main/plugin_template/swinfo.json",
"ksp2_version": {
"min": "0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/PatchManager.Core/CoreModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,5 +217,5 @@ public override void BindConfiguration(IConfigFile modConfiguration)
/// This is the current universe that patch manager is using (used for interop reasons)
/// </summary>
[PublicAPI]
public Universe CurrentUniverse => PatchingManager.Universe;
public static Universe CurrentUniverse => PatchingManager.Universe;
}

0 comments on commit 7850b0e

Please sign in to comment.