From dacb52516e831fab8af1988372c810e79f5613b4 Mon Sep 17 00:00:00 2001 From: "C.L" Date: Sun, 25 Sep 2022 16:47:27 -0400 Subject: [PATCH 1/2] Merge pull request #13804 from Heroman3003/empty-message-fix ADMIN: EVENT --- code/game/objects/structures/ghost_pods/ghost_pods.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/ghost_pods/ghost_pods.dm b/code/game/objects/structures/ghost_pods/ghost_pods.dm index f09522ddb8..6c856ceb7f 100644 --- a/code/game/objects/structures/ghost_pods/ghost_pods.dm +++ b/code/game/objects/structures/ghost_pods/ghost_pods.dm @@ -17,8 +17,10 @@ if(busy) return FALSE - visible_message(alert) - log_and_message_admins(adminalert) + if(alert) + visible_message(alert) + if(adminalert) + log_and_message_admins(adminalert) busy = TRUE var/datum/ghost_query/Q = new ghost_query_type() var/list/winner = Q.query()