From 0762b2a9eba100ed81930a56ab6ab8d783679851 Mon Sep 17 00:00:00 2001 From: Albert Iordache Date: Sat, 14 Jul 2012 14:08:17 +0300 Subject: [PATCH] Fixed a case where examine becomes bugged after an admin revives a player --- code/modules/mob/living/living.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 042e2d974d9..c491d7deca4 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -184,7 +184,7 @@ affecting.status &= ~ORGAN_BROKEN affecting.status &= ~ORGAN_SPLINTED affecting.status &= ~ORGAN_DESTROYED - del affecting.wound_descs + affecting.wound_descs.Cut() H.UpdateDamageIcon() H.update_body() //src.fireloss = 0 @@ -218,7 +218,7 @@ e.status &= ~ORGAN_DESTROYED e.perma_injury = 0 e.update_icon() - del e.wound_descs + e.wound_descs.Cut() del(H.vessel) H.vessel = new/datum/reagents(560) H.vessel.my_atom = H