From a20fb67f63f2aba4b68a032d7a55b56c05c9cd0a Mon Sep 17 00:00:00 2001 From: panurgomatic Date: Tue, 19 Oct 2010 10:22:45 +0000 Subject: [PATCH] - Fixed bug that made virus carrier uncurable git-svn-id: http://tgstation13.googlecode.com/svn/trunk@323 316c924e-a436-60f5-8080-3fe189b3f50e --- code/datums/disease.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/datums/disease.dm b/code/datums/disease.dm index 6fecad223a..2f1ad7496f 100644 --- a/code/datums/disease.dm +++ b/code/datums/disease.dm @@ -16,13 +16,14 @@ var/permeability_mod = 0//permeability modifier. Positive gives better chance, negative - worse. /datum/disease/proc/stage_act() - if(carrier) - //world << "[affected_mob] is carrier" - return var/cure_present = has_cure() //world << "[cure_present]" + if(carrier&&!cure_present) + //world << "[affected_mob] is carrier" + return + spread = (cure_present?"Remissive":initial(spread)) if(stage > max_stages)