From 5fe014e4d1d44e7c7354c3ca621420e4dbfd8d87 Mon Sep 17 00:00:00 2001 From: XyzzyThePretender <106030730+XyzzyThePretender@users.noreply.github.com> Date: Wed, 10 Aug 2022 02:15:14 -0400 Subject: [PATCH] Fix grammar for solar panel construction (#69010) About The Pull Request Fixes #69001 "into place" only shows up when securing a solar panel using ? : conditional. Why It's Good For The Game Grammar fix. Co-authored-by: san7890 Co-authored-by: tattle <66640614+dragomagol@users.noreply.github.com> --- code/modules/power/solar.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm index 5e3cb61e47e..791e69f7df6 100644 --- a/code/modules/power/solar.dm +++ b/code/modules/power/solar.dm @@ -300,7 +300,10 @@ to_chat(user, span_warning("You can't secure [src] here.")) return set_anchored(!anchored) - user.visible_message(span_notice("[user] [anchored ? null : "un"]wrenches the solar assembly into place."), span_notice("You [anchored ? null : "un"]wrench the solar assembly into place.")) + user.visible_message( + span_notice("[user] [anchored ? null : "un"]wrenches the solar assembly [anchored ? "into place" : null]."), + span_notice("You [anchored ? null : "un"]wrench the solar assembly [anchored ? "into place" : null]."), + ) W.play_tool_sound(src, 75) return TRUE