- Fixed bug that made virus carrier uncurable

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@323 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
panurgomatic
2010-10-19 10:22:45 +00:00
parent 61ea7b328b
commit a20fb67f63

View File

@@ -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)