Skip to content

Commit

Permalink
Update ReturnFamilyList to say your spouses name (#1087)
Browse files Browse the repository at this point in the history
Adds two lines of code to the return family list verb to make it say your spouses name in chat. Due to spouse_name being connected to real_name variable rather than a actual mob in the world. In the future i may look into changing this but it may have some issues with werewolves or transformations.
  • Loading branch information
InsightfulParasite authored Nov 10, 2024
1 parent b55fc68 commit 98ded76
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions code/datums/heritage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,8 @@
/mob/living/carbon/human/verb/ReturnFamilyList()
set name = "List Family"
set category = "Memory"
if(spouse_name)
to_chat(src, span_info("[spouse_name] is the name of your lover."))
if(family_datum)
family_datum.ListFamily(src)
else
Expand Down

0 comments on commit 98ded76

Please sign in to comment.