From 51c0d509d9dbe41dfc875104ee5e36031aaeda46 Mon Sep 17 00:00:00 2001 From: IK3I Date: Thu, 11 Jan 2018 07:36:20 -0600 Subject: [PATCH] Fixes #8484 Switches die after the first else encountered. Surprised it didn't spit an error for that. --- code/modules/admin/verbs/randomverbs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 27b6c38a469..05ce538ffc8 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -576,7 +576,7 @@ Traitors and the like can also be revived with the previous role mostly intact. command_announcement.Announce(input, customname, MsgSound[beepsound], , , type) print_command_report(input, "[command_name()] Update") - else if("No") + if("No") //same thing as the blob stuff - it's not public, so it's classified, dammit command_announcer.autosay("A classified message has been printed out at all communication consoles."); print_command_report(input, "Classified [command_name()] Update")