From b3b183dbd97bfc7f20b999a8d3af93d6f39710a4 Mon Sep 17 00:00:00 2001 From: Stuffed <stuffedgame@gmail.com> Date: Fri, 5 May 2017 22:25:37 +0900 Subject: [PATCH] Call Master as 'Daddy', 'Son', 'Brother' --- src/utility/miscWidgets.tw | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index 033397bdac7..bae39c4b1b2 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -1358,6 +1358,15 @@ <<widget "Enunciate">> <<if SlaveStatsChecker.checkForLisp($args[0])>> <<if def $PC.customTitleLisp>><<set $titleEnunciate = $PC.customTitleLisp>><<elseif $PC.title != 0>><<set $titleEnunciate = "Mathter">><<else>><<set $titleEnunciate = "Mithtreth">><</if>> + <<if $args[0].father == -1>> + <<set $titleEnunciate = "Dadda">> + <<elseif $args[0].mother == -1>> + <<set $titleEnunciate = "Mumma">> + <<elseif $args[0].mother == $PC.mother || $args[0].father == $PC.father>> + <<set $titleEnunciate = "Brova">> + <<elseif $PC.mother == $args[0].ID || $PC.father == $args[0].ID>> + <<set $titleEnunciate = "Son">> + <</if>> <<set $sayEnunciate = "lisp">> <<set $sEnunciate = "th">> <<set $SEnunciate = "Th">> @@ -1365,6 +1374,16 @@ <<set $cEnunciate = "th">> <<else>> <<if def $PC.customTitle>><<set $titleEnunciate = $PC.customTitle>><<elseif $PC.title != 0>><<set $titleEnunciate = "Master">><<else>><<set $titleEnunciate = "Mistress">><</if>> + <<if $args[0].father == -1>> + <<set $titleEnunciate = "Daddy">> + <<elseif $args[0].mother == -1>> + <<set $titleEnunciate = "Mummy">> + <<elseif $args[0].mother == $PC.mother || $args[0].father == $PC.father>> + <<set $titleEnunciate = "Brother">> + <<elseif $PC.mother == $args[0].ID || $PC.father == $args[0].ID>> + <<set $titleEnunciate = "Son">> + <</if>> + <<set $sayEnunciate = "say">> <<set $sEnunciate = "s">> <<set $SEnunciate = "S">> -- GitLab