mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
[MIRROR] Hulks can shove on combat mode like non-hulks (#3747)
* Hulks can shove on combat mode like non-hulks (#57275) * Hulks can shove on combat mode like non-hulks Co-authored-by: Ryll Ryll <3589655+Ryll-Ryll@users.noreply.github.com>
This commit is contained in:
@@ -27,12 +27,12 @@
|
||||
RegisterSignal(owner, COMSIG_MOB_SAY, .proc/handle_speech)
|
||||
RegisterSignal(owner, COMSIG_MOB_CLICKON, .proc/check_swing)
|
||||
|
||||
/datum/mutation/human/hulk/proc/on_attack_hand(mob/living/carbon/human/source, atom/target, proximity)
|
||||
/datum/mutation/human/hulk/proc/on_attack_hand(mob/living/carbon/human/source, atom/target, proximity, modifiers)
|
||||
SIGNAL_HANDLER
|
||||
|
||||
if(!proximity)
|
||||
return
|
||||
if(!source.combat_mode)
|
||||
if(!source.combat_mode || LAZYACCESS(modifiers, RIGHT_CLICK))
|
||||
return
|
||||
if(target.attack_hulk(owner))
|
||||
if(world.time > (last_scream + scream_delay))
|
||||
|
||||
Reference in New Issue
Block a user