From 7727e5d91bed7ed79abf2d0196989de17b5203f9 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Tue, 4 Apr 2023 03:47:33 -0500 Subject: [PATCH] Changelings are no longer gibbed by SR (#20507) * Changelings are no longer gibbed by SR * forgot to remove this :skull: * actually balance just wants this * Update code/modules/reagents/chemistry/reagents/medicine.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> --------- Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> --- code/modules/reagents/chemistry/reagents/medicine.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/reagents/chemistry/reagents/medicine.dm b/code/modules/reagents/chemistry/reagents/medicine.dm index b53356fee27..e770dd06fdc 100644 --- a/code/modules/reagents/chemistry/reagents/medicine.dm +++ b/code/modules/reagents/chemistry/reagents/medicine.dm @@ -769,6 +769,8 @@ if(method == REAGENT_INGEST || (method == REAGENT_TOUCH && prob(25))) if(M.stat == DEAD) if(M.getBruteLoss() + M.getFireLoss() + M.getCloneLoss() >= 150) + if(ischangeling(M)) + return M.delayed_gib() return if(!M.ghost_can_reenter())