From af0b69c72798bf6d7accb565dd7663969f703196 Mon Sep 17 00:00:00 2001 From: Marm <85680653+ItsMarmite@users.noreply.github.com> Date: Mon, 20 Jun 2022 21:02:35 +0100 Subject: [PATCH] Makes Collosus death bolt dust dead people (#18011) --- .../mob/living/simple_animal/hostile/megafauna/colossus.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm index c0dcff97bb9..2baea75d0d6 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm @@ -262,6 +262,10 @@ Difficulty: Very Hard . = ..() if(isturf(target) || isobj(target)) target.ex_act(2) + if(isliving(target)) + var/mob/living/L = target + if(L.stat == DEAD) + L.dust() /obj/item/gps/internal/colossus icon_state = null