From 7fe8e28fa80943e57aa3348d6ac0f604d6da892d Mon Sep 17 00:00:00 2001 From: deelite34 Date: Mon, 8 Mar 2021 16:51:24 +0100 Subject: [PATCH] Fix duplicate ? and FLW appearing --- code/game/objects/items/blueprints.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index f31458274ea..39e4f3012fd 100644 --- a/code/game/objects/items/blueprints.dm +++ b/code/game/objects/items/blueprints.dm @@ -228,8 +228,8 @@ FD.CalculateAffectingAreas() interact() - message_admins("A new room was made by [ADMIN_LOOKUPFLW(usr)] at [ADMIN_VERBOSEJMP(usr)] with the name [str]") - log_game("A new room was made by [key_name(usr)] at [AREACOORD(usr)] with the name [str]") + message_admins("A new room was made by [key_name_admin(usr)] at [ADMIN_VERBOSEJMP(usr)] with the name [str]") + log_game("A new room was made by [key_name_admin(usr)] at [AREACOORD(usr)] with the name [str]") area_created = TRUE return area_created @@ -250,8 +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] ") + message_admins("A room was renamed by [key_name_admin(usr)] at [ADMIN_VERBOSEJMP(usr)] changing the name from [prevname] to [str]") + log_game("A room was renamed by [key_name_admin(usr)] at [AREACOORD(usr)] changing the name from [prevname] to [str] ") return 1