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
This commit is contained in:
Kierany9
2019-03-26 18:38:41 -07:00
committed by Tad Hardesty
parent efce615798
commit d44b79ed27
+2 -2
View File
@@ -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")
user.log_talk(message, LOG_SAY, tag="hive")