Skip to content

Commit

Permalink
The memories for Smoker and Alcoholic now actually mention the prefer…
Browse files Browse the repository at this point in the history
…red brand (tgstation#83674)

## About The Pull Request

This revises the descriptions for the smoker/alcoholic quirk memories to
actually mention the preferred brand:



## Why It's Good For The Game

Because memories should help you, well, remember stuff, and "Joe's
smoking problem" is kinda useless when you've forgotten _which_ brand
your character prefers.

`[name]'s smoking problem.` -> `[name]'s addiction to [preferred_brand]
cigarettes.`
`[name]'s drinking problem.` -> `[name]'s addiction to
[preferred_brandy] alcohol.`

## Changelog
:cl:
qol: The memories for Smoker and Alcoholic now actually mention the
preferred brand.
/:cl:
  • Loading branch information
Absolucy authored Jun 4, 2024
1 parent cfa77b3 commit 1360293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/datums/memory/key_memories.dm
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
return ..()

/datum/memory/key/quirk_smoker/get_names()
return list("[protagonist_name]'s smoking problem.")
return list("[protagonist_name]'s addiction to [preferred_brand] cigarettes.")

/datum/memory/key/quirk_smoker/get_starts()
return list(
Expand Down Expand Up @@ -143,7 +143,7 @@
return ..()

/datum/memory/key/quirk_alcoholic/get_names()
return list("[protagonist_name]'s drinking problem.")
return list("[protagonist_name]'s addiction to [preferred_brandy] alcohol.")

/datum/memory/key/quirk_alcoholic/get_starts()
return list(
Expand Down

0 comments on commit 1360293

Please sign in to comment.