From 1ab2e30da463f674cf564eef1703ca26690187a1 Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 15 Aug 2022 12:17:11 -0400 Subject: [PATCH 1/2] Forgot to commit this to custom credits --- NewHorizons/Assets/addon-manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Assets/addon-manifest.json b/NewHorizons/Assets/addon-manifest.json index 4a7dd87c..9d8fd2a8 100644 --- a/NewHorizons/Assets/addon-manifest.json +++ b/NewHorizons/Assets/addon-manifest.json @@ -14,6 +14,6 @@ "Based off Marshmallow made by#Mister_Nebula", "With help from#AmazingAlek\n#Raicuparta\n#and the Outer Wilds discord server", " ", - "This work is unofficial Fan Content" + "This work is unofficial Fan Content and is not affiliated with Mobius Digital" ] } From 519f38e3b248de328445f0548f7216e024acb384 Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 15 Aug 2022 12:17:32 -0400 Subject: [PATCH 2/2] Fix vision torch projecting on ground + having disabled collider --- NewHorizons/Patches/VisionTorchPatches.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NewHorizons/Patches/VisionTorchPatches.cs b/NewHorizons/Patches/VisionTorchPatches.cs index fd4dd131..82c65832 100644 --- a/NewHorizons/Patches/VisionTorchPatches.cs +++ b/NewHorizons/Patches/VisionTorchPatches.cs @@ -71,6 +71,10 @@ namespace NewHorizons.Patches base_DropItem(__instance, position, normal, parent, sector, customDropTarget); } + if (__instance._wasProjecting) __instance._mindProjectorTrigger.SetProjectorActive(false); + + __instance.gameObject.GetComponent().enabled = true; + return true; } }