Skip to content

Commit

Permalink
Fix screen transition crash
Browse files Browse the repository at this point in the history
  • Loading branch information
CrackedP0t committed Aug 13, 2021
1 parent b62c58d commit 32c96a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EasyRetry/RetryModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public override void Load()
var player = self.Tracker.GetEntity<Player>();
if (player != null)
{
if (player != null && !player.Dead && !self.InCutscene && !self.SkippingCutscene && player.CanRetry)
if (player != null && !player.Dead && !self.Transitioning && !self.InCutscene && !self.SkippingCutscene && player.CanRetry)
{
Engine.TimeRate = 1f;
Distort.GameRate = 1f;
Expand Down

0 comments on commit 32c96a7

Please sign in to comment.