Merge pull request #13964 from Citadel-Station-13/silicons-patch-2

fixes parrying working while otherwise paralyzed
This commit is contained in:
Lin
2021-01-05 16:48:20 +00:00
committed by GitHub
@@ -17,6 +17,9 @@
/mob/living/proc/initiate_parry_sequence()
if(parrying)
return // already parrying
if(!(mobility_flags & MOBILITY_USE))
to_chat(src, "<span class='warning'>You can't move your arms!</span>")
return
if(!(combat_flags & COMBAT_FLAG_PARRY_CAPABLE))
to_chat(src, "<span class='warning'>You are not something that can parry attacks.</span>")
return