From 72c79a124e9b334d3af6776f76651b5953ea124c Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Wed, 26 Oct 2022 17:03:59 -0400 Subject: [PATCH] fixes runtime when checking buildmode help message (#70785) --- code/modules/buildmode/submodes/advanced.dm | 3 +-- code/modules/buildmode/submodes/basic.dm | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/code/modules/buildmode/submodes/advanced.dm b/code/modules/buildmode/submodes/advanced.dm index 5d2a27b6711..c298f394d1b 100644 --- a/code/modules/buildmode/submodes/advanced.dm +++ b/code/modules/buildmode/submodes/advanced.dm @@ -11,8 +11,7 @@ to_chat(c, span_notice("Left Mouse Button + alt on turf/obj = Copy object type")) to_chat(c, span_notice("Left Mouse Button on turf/obj = Place objects")) to_chat(c, span_notice("Right Mouse Button = Delete objects")) - to_chat(c, "") - to_chat(c, span_notice("Use the button in the upper left corner to")) + to_chat(c, span_notice("\nUse the button in the upper left corner to")) to_chat(c, span_notice("change the direction of built objects.")) to_chat(c, span_notice("***********************************************************")) diff --git a/code/modules/buildmode/submodes/basic.dm b/code/modules/buildmode/submodes/basic.dm index 4ede3f9be73..c13103c8ce2 100644 --- a/code/modules/buildmode/submodes/basic.dm +++ b/code/modules/buildmode/submodes/basic.dm @@ -7,8 +7,7 @@ to_chat(c, span_notice("Right Mouse Button = Deconstruct / Delete / Downgrade")) to_chat(c, span_notice("Left Mouse Button + ctrl = R-Window")) to_chat(c, span_notice("Left Mouse Button + alt = Airlock")) - to_chat(c, "") - to_chat(c, span_notice("Use the button in the upper left corner to")) + to_chat(c, span_notice("\nUse the button in the upper left corner to")) to_chat(c, span_notice("change the direction of built objects.")) to_chat(c, span_notice("***********************************************************"))