From 2b5dbab3b23c0b902527b792f00dd657f0e26d26 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Mon, 24 Mar 2014 12:08:20 +0100 Subject: [PATCH] Blob spore infection is now curable, added indication for blob infection --- code/modules/reagents/Chemistry-Reagents.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 003969cdb7f..8801b6dcf58 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -2027,7 +2027,11 @@ datum on_mob_life(var/mob/living/M) if(!M) M = holder.my_atom - if (prob(1) && prob(50)) + if (holder.has_reagent("plantbgone",45)) + holder.del_reagent("spore") + if (prob(1)) + M << "\red Your mouth tastes funny." + if (prob(1) && prob(25)) if(iscarbon(M)) var/mob/living/carbon/C = M if(directory[ckey(C.key)])