From d99995b7266a42fd036540ab6dad895585472d74 Mon Sep 17 00:00:00 2001 From: thgvr Date: Sun, 17 Dec 2023 21:05:27 -0800 Subject: [PATCH] commit name commit description --- code/modules/overmap/ships/owner_action.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/overmap/ships/owner_action.dm b/code/modules/overmap/ships/owner_action.dm index 515db9b5f470..84bcbc4b2028 100644 --- a/code/modules/overmap/ships/owner_action.dm +++ b/code/modules/overmap/ships/owner_action.dm @@ -134,12 +134,12 @@ if("memo") var/memo_result = sanitize(stripped_multiline_input( - user, "Enter a message for prospective players joining your ship. Playstyle and RP level information is encouraged.", + user, "Enter a message for prospective players joining your ship. This information could include your goals for the outing, or details about the way your ship may play.", "Ship Memo", parent_ship.memo )) // stripped_multiline_input returns an empty string if people press Cancel, but // we don't want to delete the current memo if people press Cancel unwittingly. - if(memo_result && length(memo_result)) + if(memo_result && length(memo_result))`632 parent_ship.memo = memo_result check_blinking() return TRUE