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)