diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index 2b1b728a1ac173da566bd8488dff021ec73a6e0b..70eefd3ef7c4f0123acbe818c7eacc990bee8478 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -80,11 +80,11 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<run removeGingering()>> /* retrieve original $activeSlave without gingering effects */ <<if $seeRace == 1>> - <<if $activeSlave.race != $activeSlave.origRace && $activeSlave.override_Race == 1>> + <<if $activeSlave.race != $activeSlave.origRace>> A blood test reveals that $he was originally $activeSlave.origRace, not $activeSlave.race<<if $PC.medicine >= 50 || $PC.slaving >= 50>>, just as you suspected<</if>>. <</if>> <</if>> -<<if $activeSlave.skin != $activeSlave.origSkin && $activeSlave.override_Skin == 1>> +<<if $activeSlave.skin != $activeSlave.origSkin>> An epidermis scan reveals that $his skin was originally $activeSlave.origSkin, not $activeSlave.skin<<if $PC.medicine >= 75 || $PC.slaving >= 75>>, just as you suspected<</if>>. <</if>> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index f8365cef3f4c01acd9807dfd9cc8e82553bbcb68..8909320e9fa7f494138c867e24ff05c0124f4f1c 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -14149,7 +14149,7 @@ $He has <<if $saleDescription == 1>> <<if ($seeRace == 1)>> - <<if $activeSlave.race != $activeSlave.origRace && $activeSlave.override_Race == 1>> + <<if $activeSlave.race != $activeSlave.origRace>> <<if $PC.slaving >= 50>> Thanks to your experience in buying and selling slaves, you can easily tell that $he has recieved plastic surgery to appear <<print $activeSlave.race>>; $his original race is currently unknown to you. <<elseif $PC.medicine >= 50>> @@ -14159,7 +14159,7 @@ $He has <</if>> <</if>> <</if>> - <<if $activeSlave.skin != $activeSlave.origSkin && $activeSlave.override_Skin == 1>> + <<if $activeSlave.skin != $activeSlave.origSkin>> <<if $PC.slaving >= 75>> Thanks to your experience in buying and selling slaves, you can easily tell that $his skin has been treated to appear <<print $activeSlave.skin>>; $his original skin tone is currently unknown to you. <<elseif $PC.medicine >= 75>> @@ -14170,11 +14170,11 @@ $He has <</if>> <<else>> <<if ($seeRace == 1)>> - <<if $activeSlave.race != $activeSlave.origRace && $activeSlave.override_Race == 1>> + <<if $activeSlave.race != $activeSlave.origRace>> $He has recieved plastic surgery to appear <<print $activeSlave.race>>; $he is originally <<print $activeSlave.origRace>>. <</if>> <</if>> - <<if $activeSlave.skin != $activeSlave.origSkin && $activeSlave.override_Skin == 1>> + <<if $activeSlave.skin != $activeSlave.origSkin>> $His skin has been treated to appear <<print $activeSlave.skin>>; $his skin is originally <<print $activeSlave.origSkin>> in color. <</if>> <</if>>