From 727b1a1b14c19d8e975af69c66525074eead2cdf Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 15 Jun 2018 04:44:01 -0500 Subject: [PATCH] [MIRROR] Fixes clothes getting damaged twice in explosions. (#7097) * Fixes clothes getting damaged twice in explosions. (#38435) * Fixes clothes getting damaged twice in explosions. --- code/datums/explosion.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/datums/explosion.dm b/code/datums/explosion.dm index 78314d4fd3..119363dfa3 100644 --- a/code/datums/explosion.dm +++ b/code/datums/explosion.dm @@ -201,7 +201,8 @@ GLOBAL_LIST_EMPTY(explosions) items += A.GetAllContents() for(var/O in items) var/atom/A = O - A.ex_act(dist) + if(!QDELETED(A)) + A.ex_act(dist) if(flame_dist && prob(40) && !isspaceturf(T) && !T.density) new /obj/effect/hotspot(T) //Mostly for ambience!