From 28a1e35f8029ff2a2d893220fbbacd375cbdc8ec Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Thu, 26 Jun 2014 20:59:30 +0930 Subject: [PATCH] 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 --- code/modules/events/event_dynamic.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/events/event_dynamic.dm b/code/modules/events/event_dynamic.dm index 2045a3b4a3d..b1dc48ef61a 100644 --- a/code/modules/events/event_dynamic.dm +++ b/code/modules/events/event_dynamic.dm @@ -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)