mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
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:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user