From 69ba25cd21c5e8c198ee753b2ef4be6a1c90cd39 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 30 Sep 2023 00:03:13 +0200 Subject: [PATCH] [MIRROR] tweaks mob-creation `message_admins()` message [MDB IGNORE] (#24021) * tweaks mob-creation `message_admins()` message (#78654) ## About The Pull Request Right now it says "ADMIN created 10ea spiders.", which is really odd syntax since nothing else in the game does this. This just fixes it so the message reads "ADMIN created 10 spiders.", which is a lot more clear to my eyes. ## Changelog I'll be honest I had no idea you could spawn mobs this way and I don't think it's measurable enough to even put an `admin` changelog. * tweaks mob-creation `message_admins()` message --------- Co-authored-by: san7890 --- code/modules/admin/topic.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 7c2d34bd30f..9db6585799f 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1309,16 +1309,16 @@ new /obj/effect/pod_landingzone(target, pod) if (number == 1) - log_admin("[key_name(usr)] created a [english_list(paths)]") + log_admin("[key_name(usr)] created an instance of [english_list(paths)]") for(var/path in paths) if(ispath(path, /mob)) - message_admins("[key_name_admin(usr)] created a [english_list(paths)]") + message_admins("[key_name_admin(usr)] created an instance of [english_list(paths)]") break else - log_admin("[key_name(usr)] created [number]ea [english_list(paths)]") + log_admin("[key_name(usr)] created [number] instances of [english_list(paths)]") for(var/path in paths) if(ispath(path, /mob)) - message_admins("[key_name_admin(usr)] created [number]ea [english_list(paths)]") + message_admins("[key_name_admin(usr)] created [number] instances of [english_list(paths)]") break return