diff --git a/code/modules/events/dust.dm b/code/modules/events/dust.dm index 509da3aea95..c15e2884f95 100644 --- a/code/modules/events/dust.dm +++ b/code/modules/events/dust.dm @@ -17,6 +17,7 @@ dust_swarm(severity, affecting_z) /datum/event/dust/end() + ..() command_announcement.Announce("\The [location_name()] is no longer in danger of impact from space debris.", "Dust Notice") /datum/event/dust/proc/get_severity() diff --git a/code/modules/events/ion_storm.dm b/code/modules/events/ion_storm.dm index 8bacf9c8300..3018a01d8b2 100644 --- a/code/modules/events/ion_storm.dm +++ b/code/modules/events/ion_storm.dm @@ -68,6 +68,7 @@ bot.emag_act(1) /datum/event/ionstorm/end() + ..() if(prob(50)) spawn(rand(5000,8000)) command_announcement.Announce("It has come to our attention that \the [location_name()] passed through an ion storm. Please monitor all electronic equipment for malfunctions.", "Anomaly Alert") diff --git a/code/modules/events/meteors.dm b/code/modules/events/meteors.dm index 7a501b43152..18ff044a2dc 100644 --- a/code/modules/events/meteors.dm +++ b/code/modules/events/meteors.dm @@ -49,6 +49,7 @@ return activeFor + ((30 / severity) * waves) + 10 /datum/event/meteor_wave/end() + ..() switch(severity) if(EVENT_LEVEL_MAJOR) command_announcement.Announce("\The [location_name()] has cleared the meteor storm.", "Meteor Alert")