From d44b79ed27380b0ac5723d97553ff588b35b50ce Mon Sep 17 00:00:00 2001 From: Kierany9 Date: Wed, 27 Mar 2019 02:38:41 +0100 Subject: [PATCH] Reclaim now works for 15 seconds after death (#43321) Fixes this bogus somebody just dm'd me about > hey so, just wondering if this is intended behavior or not after a hivemind round again > basically at the moment > hiveminds can just immediately succumb if another one is killing them and avoid being reclaimed > since reclaim doesnt work on hivemind bodies --- code/modules/spells/spell_types/hivemind.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/spells/spell_types/hivemind.dm b/code/modules/spells/spell_types/hivemind.dm index 2d22bbbd0e7..5c026e35d3d 100644 --- a/code/modules/spells/spell_types/hivemind.dm +++ b/code/modules/spells/spell_types/hivemind.dm @@ -727,7 +727,7 @@ for(var/mob/living/carbon/C in targets) if(!is_hivehost(C)) continue - if(C.InCritical()) + if(C.InCritical() || (C.stat == DEAD && C?.mind.last_death + 150 >= world.time) ) C.gib() hive.track_bonus += TRACKER_BONUS_LARGE hive.size_mod += 5 @@ -947,4 +947,4 @@ var/link = FOLLOW_LINK(M, user) to_chat(M, "[link] [my_message]") - user.log_talk(message, LOG_SAY, tag="hive") \ No newline at end of file + user.log_talk(message, LOG_SAY, tag="hive")