From b3558f04e9e69a1953933ea8f8947e89acfd1c51 Mon Sep 17 00:00:00 2001 From: Time-Green <7501474+Time-Green@users.noreply.github.com> Date: Wed, 26 Jul 2023 09:47:01 +0200 Subject: [PATCH] [NO-GBP] Changing shuttle events now alerts admins (#76939) If an admin forces 10 alien queen shuttle events, you'd probably want to alert the other admins. Previously this just put it in the admin log without telling anyone, but it's probably more fitting to just pop it in asay for how infrequent it is and considering forcing other events does it too :cl: admin: Changing shuttle events now alerts admins /:cl: Thanks to @Rex9001 for calling it out --- code/modules/admin/verbs/change_shuttle_events.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/verbs/change_shuttle_events.dm b/code/modules/admin/verbs/change_shuttle_events.dm index a24aa456f23..4ec8a7cd7b8 100644 --- a/code/modules/admin/verbs/change_shuttle_events.dm +++ b/code/modules/admin/verbs/change_shuttle_events.dm @@ -31,12 +31,12 @@ if(result == "Clear") port.event_list.Cut() - log_admin("[key_name_admin(usr)] has cleared the shuttle events on: [port]") + message_admins("[key_name_admin(usr)] has cleared the shuttle events on: [port]") else if(options[result]) var/typepath = options[result] if(typepath in active) port.event_list.Remove(active[options[result]]) - log_admin("[key_name_admin(usr)] has removed '[active[result]]' from [port].") + message_admins("[key_name_admin(usr)] has removed '[active[result]]' from [port].") else port.event_list.Add(new typepath (port)) - log_admin("[key_name_admin(usr)] has added '[typepath]' to [port].") + message_admins("[key_name_admin(usr)] has added '[typepath]' to [port].")