diff --git a/code/modules/events/event_dynamic.dm b/code/modules/events/event_dynamic.dm index 3a03999b0a7..2045a3b4a3d 100644 --- a/code/modules/events/event_dynamic.dm +++ b/code/modules/events/event_dynamic.dm @@ -95,7 +95,7 @@ var/global/list/possibleEvents = list() 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"] * 10 + possibleEvents[/datum/event/viral_outbreak] = active_with_role["Medical"] * 5 possibleEvents[/datum/event/organ_failure] = active_with_role["Medical"] * 50 possibleEvents[/datum/event/prison_break] = active_with_role["Security"] * 50 @@ -103,7 +103,7 @@ var/global/list/possibleEvents = list() if(aliens_allowed && !sent_aliens_to_station) possibleEvents[/datum/event/alien_infestation] = max(active_with_role["Security"], 5) + 2.5 if(!sent_ninja_to_station && toggle_space_ninja) - possibleEvents[/datum/event/space_ninja] = active_with_role["Security"] * 20 + possibleEvents[/datum/event/space_ninja] = active_with_role["Security"] * 5 possibleEvents[/datum/event/undead] = active_with_role["Security"] * 15 possibleEvents[/datum/event/ghosts] = active_with_role["Security"] * 25 possibleEvents[/datum/event/tear] = active_with_role["Security"] * 25