From 710857ddd959a0a5dcb90611e7e22943990332b2 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 26 Mar 2020 12:41:01 -0400 Subject: [PATCH] Same for dust --- code/modules/events/dust.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/events/dust.dm b/code/modules/events/dust.dm index c15e2884f9..31ae5dee32 100644 --- a/code/modules/events/dust.dm +++ b/code/modules/events/dust.dm @@ -7,9 +7,7 @@ ..() /datum/event/dust/announce() - if(victim) - command_announcement.Announce("The [location_name()] is now passing through a belt of space dust.", "[location_name()] Sensor Array") - else + if(!victim) command_announcement.Announce("Debris resulting from activity on another nearby asteroid is approaching \the [location_name()]", "Dust Alert") /datum/event/dust/tick() @@ -18,7 +16,8 @@ /datum/event/dust/end() ..() - command_announcement.Announce("\The [location_name()] is no longer in danger of impact from space debris.", "Dust Notice") + if(!victim) + command_announcement.Announce("\The [location_name()] is no longer in danger of impact from space debris.", "Dust Notice") /datum/event/dust/proc/get_severity() switch(severity)