From 3b684e4890ab37193f90beb211e320482ef0b7d5 Mon Sep 17 00:00:00 2001 From: Mister_Nebula <41904486+misternebula@users.noreply.github.com> Date: Wed, 23 Jun 2021 22:06:24 +0100 Subject: [PATCH] fix not being able to control respawn map --- QSB/DeathSync/Patches/MapPatches.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QSB/DeathSync/Patches/MapPatches.cs b/QSB/DeathSync/Patches/MapPatches.cs index a39b98df..e2b77c03 100644 --- a/QSB/DeathSync/Patches/MapPatches.cs +++ b/QSB/DeathSync/Patches/MapPatches.cs @@ -142,7 +142,7 @@ namespace QSB.DeathSync.Patches var revealFraction = Mathf.Clamp01(____revealTimer / ____revealLength); var smoothedRevealFraction = Mathf.SmoothStep(0f, 1f, revealFraction); - var canInteractWith = ____revealTimer > 20f; + var canInteractWith = ____revealTimer > 18f; if (____screenPromptsVisible && ____isPaused) {