Skip to content

Commit

Permalink
Merge pull request #25 from KSP2Community/hotfix-0.7.2
Browse files Browse the repository at this point in the history
Fix CoreModule.CurrentUniverse API
  • Loading branch information
jan-bures authored Dec 29, 2023
2 parents 6291021 + 7850b0e commit 9a7ea97
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 9a7ea97

Please sign in to comment.