From a40627148f3148865136a910788487bdc4a0212e Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Wed, 12 Nov 2025 18:34:56 -0500 Subject: [PATCH] Makes aux base builder failure message say the name not the path (#93880) ## About The Pull Request Makes the base builder console "you can't build here" response thing say the name of the area, rather than the path ## Why It's Good For The Game You can't build within area/shuttle/auxillary_base ## Changelog :cl: spellcheck: Auxbase construction console says the name of the area rather than the path in failure messages /:cl: --------- Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com> --- .../structures/construction_console/construction_actions.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/construction_console/construction_actions.dm b/code/game/objects/structures/construction_console/construction_actions.dm index cce7d2ee516..398e97954e7 100644 --- a/code/game/objects/structures/construction_console/construction_actions.dm +++ b/code/game/objects/structures/construction_console/construction_actions.dm @@ -32,10 +32,10 @@ if (!area_constraint) return TRUE if(!istype(build_area, area_constraint)) - to_chat(owner, span_warning("You can only build within [area_constraint]!")) + to_chat(owner, span_warning("You can only build within [area_constraint::name]!")) return FALSE if(only_station_z && !is_station_level(build_target.z)) - to_chat(owner, span_warning("[area_constraint] has launched and can no longer be modified.")) + to_chat(owner, span_warning("[area_constraint::name] has launched and can no longer be modified.")) return FALSE return TRUE