mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-23 20:56:47 +01:00
16 lines
498 B
Plaintext
16 lines
498 B
Plaintext
/mob/living/handle_micro_bump_helping(mob/living/target)
|
|
// If the target is not a pushover, stop the interaction.
|
|
if(!HAS_TRAIT(target, TRAIT_PUSHOVER))
|
|
return FALSE
|
|
|
|
// Do the rest of the function normally.
|
|
. = ..()
|
|
|
|
/mob/living/handle_micro_bump_other(mob/living/target) // I am not sure why this is a different function.
|
|
// If the target is not a pushover, stop the interaction.
|
|
if(!HAS_TRAIT(target, TRAIT_PUSHOVER))
|
|
return FALSE
|
|
|
|
// Do the rest of the function normally.
|
|
. = ..()
|