diff --git a/TABGVR/Player/VRControls.cs b/TABGVR/Player/VRControls.cs index 0c35d37..6d684d1 100644 --- a/TABGVR/Player/VRControls.cs +++ b/TABGVR/Player/VRControls.cs @@ -145,7 +145,8 @@ private void Update() { if (!_rightTriggered) { - if (weaponHandler.rightWeapon) weaponHandler.PressAttack(true, false); + if (Grenades.SelectedGrenade && interactionHandler.sinceThrow > 3f && !interactionHandler.isThrowing) interactionHandler.StartCoroutine(interactionHandler.Throwing()); + else if (weaponHandler.rightWeapon) weaponHandler.PressAttack(true, false); else PickupInteract(); } else if (weaponHandler.rightWeapon)