From 68be2cbe8b7b43f09fb8efc21c8b0d6f73750215 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Thu, 18 Feb 2021 11:04:26 -0500 Subject: [PATCH] Logs-blueprint-naming (#15525) --- code/game/objects/items/blueprints.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index a8c0165e111..ccdce20f5e4 100644 --- a/code/game/objects/items/blueprints.dm +++ b/code/game/objects/items/blueprints.dm @@ -228,6 +228,8 @@ FD.CalculateAffectingAreas() interact() + message_admins("A new room was made by [ADMIN_LOOKUPFLW(usr)] at [ADMIN_VERBOSEJMP(src)] with the name [str]") + log_game("A new room was made by [key_name(usr)] at [AREACOORD(src)] with the name [str]") area_created = TRUE return area_created @@ -248,6 +250,8 @@ FD.CalculateAffectingAreas() to_chat(usr, "You rename the '[prevname]' to '[str]'.") interact() + message_admins("A room was renamed by [ADMIN_LOOKUPFLW(usr)] at [ADMIN_VERBOSEJMP(usr)] changing the name from [prevname] to [str]") + log_game("A room was renamed by [key_name(usr)] at [AREACOORD(usr)] changing the name from [prevname] to [str] ") return 1