Fix playing card memory (#82834)

## About The Pull Request

`/datum/memory/playing_cards` accepts a list of other players, which it
uses to format into an english list.

But where it is applied, it takes a list of players, formats it into an
english list, and passes it in. Oops.

Also fixed some verbage for how the memories look in-story-form. 

## Changelog

🆑 Melbert
fix: Playing Cards memory now reads better
/🆑
This commit is contained in:
MrMelbert
2024-04-23 15:33:43 -06:00
committed by GitHub
parent d4f5cba8a0
commit 373557f750
2 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -643,7 +643,7 @@
/datum/memory/playing_cards/get_starts()
return list(
"[formatted_players_list] are waiting for [protagonist_name] to start the [game]",
"[formatted_players_list] waiting for [protagonist_name] to start the [game]",
"The [game] has been setup by [deuteragonist_name]",
"[deuteragonist_name] starts shuffling the deck for the [game]",
)
@@ -668,7 +668,7 @@
/datum/memory/playing_card_pickup/get_starts()
return list(
"[protagonist_name] tosses the [antagonist_name] at [deuteragonist_name] spilling cards all over the floor",
"[protagonist_name] tossing the [antagonist_name] at [deuteragonist_name] spilling cards all over the floor",
"A [antagonist_name] thrown by [protagonist_name] splatters across [deuteragonist_name] face",
)