From f3c3f9cd1283815ebce2380eb2ebeebc57dbc15d Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 25 Mar 2019 21:30:23 -0400 Subject: [PATCH] why the fuck was this a hidden verb - makes succumb available in the IC tab --- code/modules/mob/living/living.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 0e67ce7510..b9b6424092 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -312,7 +312,8 @@ return TRUE /mob/living/verb/succumb(whispered as null) - set hidden = TRUE + set name = "Succumb" + set category = "IC" if (InCritical()) log_message("Has [whispered ? "whispered his final words" : "succumbed to death"] while in [InFullCritical() ? "hard":"soft"] critical with [round(health, 0.1)] points of health!", LOG_ATTACK) adjustOxyLoss(health - HEALTH_THRESHOLD_DEAD)