You can no longer push people with riot shields (and other parry objects) on help intent (#25301)

* You can no longer push people with riot shields (and other parry objects) on help intent

* Update buffs.dm
This commit is contained in:
Qwertytoforty
2024-05-22 20:57:25 -04:00
committed by GitHub
parent d75cd41ba2
commit 0e2ced3c00
2 changed files with 6 additions and 2 deletions
+2
View File
@@ -596,12 +596,14 @@
H.physiology.brute_mod *= 0.8
H.physiology.burn_mod *= 0.8
H.physiology.stamina_mod *= 0.8
owner.status_flags &= ~CANPUSH
add_attack_logs(owner, owner, "gained chainsaw stun immunity", ATKLOG_ALL)
owner.add_stun_absorption("chainsaw", INFINITY, 4)
owner.playsound_local(get_turf(owner), 'sound/effects/singlebeat.ogg', 40, TRUE, use_reverb = FALSE)
/datum/status_effect/chainsaw_slaying/on_remove()
add_attack_logs(owner, owner, "lost chainsaw stun immunity", ATKLOG_ALL)
owner.status_flags |= CANPUSH
if(islist(owner.stun_absorption) && owner.stun_absorption["chainsaw"])
owner.remove_stun_absorption("chainsaw")
if(ishuman(owner))