diff --git a/State/Thinker/CenturionAttackState.cs b/State/Thinker/CenturionAttackState.cs index 75286fb..fdacf97 100644 --- a/State/Thinker/CenturionAttackState.cs +++ b/State/Thinker/CenturionAttackState.cs @@ -50,6 +50,11 @@ public partial class CenturionAttackState : BlockAttackState { base.Think(); + if (_bestTarget?.StunTime > 0) + { + return null; + } + var teammate = FindBestTeammate(); if (teammate is not null) {