From 8d835a349cd5871a128bf8cb878518ffcb5e52b0 Mon Sep 17 00:00:00 2001 From: Arturs Ziborovs Date: Sun, 22 Oct 2023 20:29:16 +0300 Subject: [PATCH] Fixed unneeded space --- SRMP/Patches/Patch_PauseFix.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SRMP/Patches/Patch_PauseFix.cs b/SRMP/Patches/Patch_PauseFix.cs index f6cea86..40f08ef 100644 --- a/SRMP/Patches/Patch_PauseFix.cs +++ b/SRMP/Patches/Patch_PauseFix.cs @@ -68,7 +68,7 @@ namespace SRMultiplayer.Patches prevAllowInput = __instance.m_AllowGameplayInput; if (Globals.IsMultiplayer && Globals.PauseState == PauseState.Pause) { - // Disable input so that we don't move when "paused" + // Disable input so that we don't move when "paused" __instance.m_AllowGameplayInput = false; } }