diff --git a/Cards/QuickReflexesCard.cs b/Cards/QuickReflexesCard.cs index a0c34fe..a73d211 100644 --- a/Cards/QuickReflexesCard.cs +++ b/Cards/QuickReflexesCard.cs @@ -117,7 +117,8 @@ private static void Prefix(ProjectileHit __instance, Vector2 hitPoint, Vector2 h if (healthHandler && healthHandler.GetComponent() && healthHandler.GetComponent()) { Block block = healthHandler.GetComponent(); - if (healthHandler.GetComponent() != null && block.counter >= block.Cooldown()) + CharacterData data = healthHandler.GetComponent(); + if (healthHandler.GetComponent() != null && block.counter >= block.Cooldown() && !data.isSilenced && !data.isStunned) { wasBlocked = true; if (healthHandler.GetComponent().view.IsMine) { block.TryBlock(); }