From c7492cbc8da315e5315d532871d33d59d7792383 Mon Sep 17 00:00:00 2001 From: Mek Date: Mon, 29 Aug 2022 12:17:46 -0400 Subject: [PATCH] i hate pod people --- code/modules/zombie/organs.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/zombie/organs.dm b/code/modules/zombie/organs.dm index 109f87ae87bc..49692b9baaf1 100644 --- a/code/modules/zombie/organs.dm +++ b/code/modules/zombie/organs.dm @@ -48,7 +48,10 @@ if(!(src in owner.internal_organs)) Remove(owner) if (causes_damage && !iszombie(owner) && owner.stat != DEAD) - owner.adjustToxLoss(damage_caused) + if(owner.dna.species.id == "pod") + owner.adjustToxLoss(damage_caused + 0.5) //So they cant passively out-heal it + else + owner.adjustToxLoss(damage_caused) if (prob(10)) to_chat(owner, span_danger("You feel sick...")) if(timer_id)