From 8bc6e2530ad1a0cf09ddef2ee1431230c76f6786 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 26 Jul 2023 09:53:16 +0200 Subject: [PATCH] [MIRROR] [NO-GBP] Changing shuttle events now alerts admins [MDB IGNORE] (#22688) * [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 * [NO-GBP] Changing shuttle events now alerts admins --------- Co-authored-by: Time-Green <7501474+Time-Green@users.noreply.github.com> --- 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].")