mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-23 12:47:13 +01:00
9 lines
374 B
Plaintext
9 lines
374 B
Plaintext
/mob/living/handle_micro_bump_other(mob/living/target)
|
|
|
|
// If the target is not in combat mode, if the target has the preference off, stop the interaction.
|
|
if(target.a_intent != INTENT_HARM && SEND_SIGNAL(target, COMSIG_COMBAT_MODE_CHECK, COMBAT_MODE_INACTIVE) && target.client.prefs.stomppref == FALSE)
|
|
return FALSE
|
|
|
|
// Do the rest of the function normally.
|
|
. = ..()
|