diff --git a/Assets/Scripts/Players/LocalPlayer.cs b/Assets/Scripts/Players/LocalPlayer.cs index 28e789c..6d4dc44 100644 --- a/Assets/Scripts/Players/LocalPlayer.cs +++ b/Assets/Scripts/Players/LocalPlayer.cs @@ -64,7 +64,7 @@ namespace NeonTea.Quakeball.Players { } private void Update() { - if (DisableInput > 0) { + if (DisableInput > 0 || !Application.isFocused) { CrouchAction.Disable(); JumpAction.Disable(); LookAction.Disable();