From cf693dde91183c719a21bdcfb2efc584fb636726 Mon Sep 17 00:00:00 2001 From: deelite34 Date: Fri, 5 Mar 2021 14:48:15 +0100 Subject: [PATCH] Fix coordinates not showing up in logs, when you create new area with station plans --- code/game/objects/items/blueprints.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index ccdce20f5e4..f31458274ea 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(src)] with the name [str]") - log_game("A new room was made by [key_name(usr)] at [AREACOORD(src)] with the name [str]") + 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]") area_created = TRUE return area_created