this shit causes a crash lol

This commit is contained in:
JohnCorby 2022-11-18 01:18:19 -08:00
parent d14aa4da91
commit 67d2b5df82

View File

@ -141,14 +141,10 @@ public class DeathPatches : QSBPatch
Achievements.Earn(Achievements.Type.EARLY_ADOPTER); Achievements.Earn(Achievements.Type.EARLY_ADOPTER);
} }
if (PlayerState.InDreamWorld()) if (PlayerState.InDreamWorld() && deathType != DeathType.Dream && deathType != DeathType.DreamExplosion && deathType != DeathType.Supernova && deathType != DeathType.TimeLoop && deathType != DeathType.Meditation)
{ {
// exit dream world either way to prevent goof with respawn
Locator.GetDreamWorldController().ExitDreamWorld(deathType); Locator.GetDreamWorldController().ExitDreamWorld(deathType);
if (deathType != DeathType.Dream && deathType != DeathType.DreamExplosion && deathType != DeathType.Supernova && deathType != DeathType.TimeLoop && deathType != DeathType.Meditation) return;
{
return;
}
} }
if (!@this._isDying) if (!@this._isDying)