mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 07:08:00 +01:00
[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 <the@san7890.com>
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user