diff --git a/code/modules/events/event_container.dm b/code/modules/events/event_container.dm index 250a60891305..bc65ffb4d85b 100644 --- a/code/modules/events/event_container.dm +++ b/code/modules/events/event_container.dm @@ -141,7 +141,7 @@ GLOBAL_LIST_EMPTY(event_last_fired) new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Mundane News", /datum/event/mundane_news, 300), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 100, list(ASSIGNMENT_JANITOR = 100)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Sentience", /datum/event/sentience, 50), - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30, ASSIGNMENT_GARDENER = 50)), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Fungal Growth", /datum/event/wallrot/fungus, 50, list(ASSIGNMENT_CHEMIST = 50)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Koi School", /datum/event/carp_migration/koi, 80), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Camera Failure", /datum/event/camera_failure, 100, list(ASSIGNMENT_ENGINEER = 10)), diff --git a/code/modules/events/event_procs.dm b/code/modules/events/event_procs.dm index d0af4971ec24..9949617058ae 100644 --- a/code/modules/events/event_procs.dm +++ b/code/modules/events/event_procs.dm @@ -64,6 +64,7 @@ active_with_role["Cyborg"] = 0 active_with_role["Janitor"] = 0 active_with_role["Botanist"] = 0 + active_with_role["Chemist"] = 0 active_with_role["Any"] = length(GLOB.player_list) for(var/mob/M in GLOB.player_list) @@ -105,6 +106,9 @@ if(M.mind.assigned_role == "Botanist") active_with_role["Botanist"]++ + if(M.mind.assigned_role == "Chemist") + active_with_role["Chemist"]++ + return active_with_role /datum/event/proc/num_players()