From ef3fdef094c269ab50816a68055bb3985e0e8ae3 Mon Sep 17 00:00:00 2001 From: san7890 Date: Fri, 29 Sep 2023 13:38:56 -0700 Subject: [PATCH] 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. --- 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 7c52adbec74..b585b5c9103 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1267,16 +1267,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