Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Cards/QuickReflexesCard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ private static void Prefix(ProjectileHit __instance, Vector2 hitPoint, Vector2 h
if (healthHandler && healthHandler.GetComponent<CharacterData>() && healthHandler.GetComponent<Block>())
{
Block block = healthHandler.GetComponent<Block>();
if (healthHandler.GetComponent<QuickReflexesEffect>() != null && block.counter >= block.Cooldown())
CharacterData data = healthHandler.GetComponent<CharacterData>();
if (healthHandler.GetComponent<QuickReflexesEffect>() != null && block.counter >= block.Cooldown() && !data.isSilenced && !data.isStunned)
{
wasBlocked = true;
if (healthHandler.GetComponent<CharacterData>().view.IsMine) { block.TryBlock(); }
Expand Down