Skip to content

Commit

Permalink
commit name
Browse files Browse the repository at this point in the history
commit description
  • Loading branch information
thgvr committed Dec 18, 2023
1 parent 1a9faa1 commit d99995b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/overmap/ships/owner_action.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Check failure on line 142 in code/modules/overmap/ships/owner_action.dm

View workflow job for this annotation

GitHub Actions / Run Linters

illegal byte 0x60 ('`')

Check failure on line 142 in code/modules/overmap/ships/owner_action.dm

View workflow job for this annotation

GitHub Actions / Run Linters

got '{', expected one of: operator, field access, ';'
parent_ship.memo = memo_result
check_blinking()
return TRUE
Expand Down

0 comments on commit d99995b

Please sign in to comment.