Merge pull request #52304 from Ryll-Ryll/fixing-under-protest

Fixes handi-capable tackling from beyond the grave
This commit is contained in:
skoglol
2020-07-21 19:25:51 +02:00
committed by GitHub
+1 -1
View File
@@ -68,7 +68,7 @@
///See if we can tackle or not. If we can, leap!
/datum/component/tackler/proc/checkTackle(mob/living/carbon/user, atom/A, params)
if(!user.in_throw_mode || user.get_active_held_item() || user.pulling || user.buckling)
if(!user.in_throw_mode || user.get_active_held_item() || user.pulling || user.buckled || user.incapacitated())
return
if(!A || !(isturf(A) || isturf(A.loc)))