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 <the@san7890.com>
Co-authored-by: tattle <66640614+dragomagol@users.noreply.github.com>
This commit is contained in:
XyzzyThePretender
2022-08-09 23:15:14 -07:00
committed by GitHub
co-authored by san7890 tattle
parent ef13c11404
commit 5fe014e4d1
+4 -1
View File
@@ -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