From 2012c911b7833f9afea3565e0957cf3fae018443 Mon Sep 17 00:00:00 2001 From: Noah Pilarski Date: Thu, 11 Aug 2022 14:05:23 -0400 Subject: [PATCH] Check for eye of the universe --- NewHorizons/Handlers/VesselWarpHandler.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/NewHorizons/Handlers/VesselWarpHandler.cs b/NewHorizons/Handlers/VesselWarpHandler.cs index 1cd7cb10..eafc8484 100644 --- a/NewHorizons/Handlers/VesselWarpHandler.cs +++ b/NewHorizons/Handlers/VesselWarpHandler.cs @@ -27,6 +27,7 @@ namespace NewHorizons.Handlers public static void LoadVessel() { + if (Instance.CurrentStarSystem == "EyeOfTheUniverse") return SearchUtilities.Find("Vessel_Body/SPAWN_Vessel").GetComponent(); if (Instance.IsWarpingFromVessel) _vesselSpawnPoint = Instance.CurrentStarSystem == "SolarSystem" ? UpdateVessel() : CreateVessel(); else