From 6f1bdb44f3642e747398fccaf5788f926863bbec Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 12 Feb 2024 13:27:27 -0500 Subject: [PATCH] Fix "Ship log updated" displayed after warping --- NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs | 3 +++ NewHorizons/manifest.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs b/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs index 12a37e8e..b76d61bb 100644 --- a/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs +++ b/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs @@ -123,6 +123,9 @@ namespace NewHorizons.Patches.ShipLogPatches else { EntryLocationBuilder.InitializeLocations(); + // Start method disables the ShipLogManager + // Else it thinks its meant to be waiting to post a SHIP LOG UPDATED notif (and then does so) #779 + __instance.enabled = false; return false; } } diff --git a/NewHorizons/manifest.json b/NewHorizons/manifest.json index ec47461c..3359833d 100644 --- a/NewHorizons/manifest.json +++ b/NewHorizons/manifest.json @@ -4,7 +4,7 @@ "author": "xen, Bwc9876, clay, MegaPiggy, John, Trifid, Hawkbar, Book", "name": "New Horizons", "uniqueName": "xen.NewHorizons", - "version": "1.18.6", + "version": "1.18.7", "owmlVersion": "2.9.8", "dependencies": [ "JohnCorby.VanillaFix", "_nebula.MenuFramework", "xen.CommonCameraUtility", "dgarro.CustomShipLogModes" ], "conflicts": [ "Raicuparta.QuantumSpaceBuddies", "PacificEngine.OW_CommonResources" ],