diff --git a/src/hacks/Trigger.cpp b/src/hacks/Trigger.cpp index a14f848d..37d67567 100644 --- a/src/hacks/Trigger.cpp +++ b/src/hacks/Trigger.cpp @@ -158,6 +158,9 @@ bool ShouldShoot() if (!g_pLocalPlayer->bZoomed && !(current_user_cmd->buttons & IN_ATTACK)) return false; } + // Check if player is bonked + if (HasCondition(g_pLocalPlayer->entity)) + return false; // Check if player is taunting if (HasCondition(g_pLocalPlayer->entity)) return false;