As far as I can tell, viral infections were happening irrespec

tive of medical crew being present. Lowered chance for proc as well.

Conflicts:
	code/modules/events/event_dynamic.dm
This commit is contained in:
Zuhayr
2014-06-26 20:59:30 +09:30
committed by ZomgPonies
parent d3c35251bb
commit 28a1e35f80
+2 -1
View File
@@ -91,12 +91,13 @@ var/global/list/possibleEvents = list()
possibleEvents[/datum/event/brand_intelligence] = 50 + 25 * active_with_role["Engineer"]
possibleEvents[/datum/event/spider_infestation] = 50 + 25 * active_with_role["Security"]
possibleEvents[/datum/event/viral_infection] = 25 + active_with_role["Medical"] * 50
if(active_with_role["Medical"] > 0)
possibleEvents[/datum/event/radiation_storm] = active_with_role["Medical"] * 50
possibleEvents[/datum/event/spontaneous_appendicitis] = active_with_role["Medical"] * 150
possibleEvents[/datum/event/viral_outbreak] = active_with_role["Medical"] * 5
possibleEvents[/datum/event/organ_failure] = active_with_role["Medical"] * 50
possibleEvents[/datum/event/viral_infection] = 25 + active_with_role["Medical"] * 50
possibleEvents[/datum/event/prison_break] = active_with_role["Security"] * 50
if(active_with_role["Security"] > 0)