Skip to content

Commit

Permalink
add eye check again
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnCorby committed Jan 20, 2023
1 parent 09e86e4 commit 548d12f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions QSB/DeathSync/Patches/DeathPatches.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ public static bool HighSpeedImpactSensor_HandlePlayerInsideShip(HighSpeedImpactS
[HarmonyPatch(typeof(DeathManager), nameof(DeathManager.FinishDeathSequence))]
public static bool DeathManager_FinishDeathSequence(DeathManager __instance)
{
// funny moment for eye
if (QSBSceneManager.CurrentScene != OWScene.SolarSystem)
{
return true;
}

if (!__instance._isDead)
{
if (__instance.CheckShouldWakeInDreamWorld())
Expand Down

0 comments on commit 548d12f

Please sign in to comment.