From 1da09aea488e67e9ba158f070badfffd9ed437c3 Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Sun, 22 Mar 2020 14:11:09 +0100 Subject: [PATCH] fix spelling --- Changelog.txt | 2 +- devTools/dictionary_phrases.txt | 4 +++- slave variables documentation - Pregmod.txt | 4 ++-- src/facilities/nursery/nurseryWidgets.js | 4 ++-- src/pregmod/widgets/bodyswapWidgets.tw | 2 +- src/utility/descriptionWidgetsFlesh.tw | 4 ++-- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 7c03a8d98a1..fab7c58b607 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -6936,7 +6936,7 @@ Pregmod 28 -fixed? saChoosesOwnJob - -assigned a default eyeWear to custom slaves + -assigned a default eyewear to custom slaves 27 -applies incubator bugfix diff --git a/devTools/dictionary_phrases.txt b/devTools/dictionary_phrases.txt index 620b623151d..af36f9621c1 100644 --- a/devTools/dictionary_phrases.txt +++ b/devTools/dictionary_phrases.txt @@ -3,7 +3,7 @@ # Phrases will be found whenever that exact phrase appears, regardless of # surroundings or overlapping. # Format is: searchPhrase#errorMessage -# Output is: Found searchPhrase; Error: errorMessage +# Output is: Found searchPhrase; Correct: errorMessage #cash +=#Should be cashX() ## cash used by corporate code, #cash -=#Should be cashX() ## too many false positives #rep +=#Should be repX() ## unused because .rep is used by facility code @@ -33,3 +33,5 @@ Coca Cola#Coca-Cola dosen't#doesn't aircrafts'#aircraft's outift#outfit +earWear#earwear +eyeWear#eyewear \ No newline at end of file diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt index e3084dfc2a9..ff71613537b 100644 --- a/slave variables documentation - Pregmod.txt +++ b/slave variables documentation - Pregmod.txt @@ -1458,7 +1458,7 @@ color of sclera "yellow" "orange" -eyeWear: +eyewear: accepts string "none" @@ -1475,7 +1475,7 @@ slave hearing -1 - hard of hearing 0 - normal -earWear: +earwear: accepts string "none" diff --git a/src/facilities/nursery/nurseryWidgets.js b/src/facilities/nursery/nurseryWidgets.js index 7fc49d9fb0a..fd42ae4678e 100644 --- a/src/facilities/nursery/nurseryWidgets.js +++ b/src/facilities/nursery/nurseryWidgets.js @@ -9062,11 +9062,11 @@ App.Facilities.Nursery.LongChildDescription = function(child) { } else { r += `${He} has nothing but small, perforated metal disks where ${his} ears should be. `; } - } else if (child.earWear === "none") { + } else if (child.earwear === "none") { r += `${He} has small unsightly holes on the sides of ${his} head. `; } else { r += `The sides of ${his} head are smooth where ${his} ears should be, but upon closer inspection it is revealed that `; - if (child.earWear === "hearing aids") { + if (child.earwear === "hearing aids") { r += `${his} ear canals are fitted with hearing aids capped with a skin-matching sheet to obscure the hole. `; } else { r += `${his} ear canals are filled with plugs with skin-matching caps. `; diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw index ec290653ad3..531b42fadef 100644 --- a/src/pregmod/widgets/bodyswapWidgets.tw +++ b/src/pregmod/widgets/bodyswapWidgets.tw @@ -175,7 +175,7 @@ <<set $args[0].porn.prestigeDesc = $args[1].porn.prestigeDesc>> <<set $args[0].prestigeDesc = $args[1].prestigeDesc>> <<set $args[0].minorInjury = $args[1].minorInjury>> - <<set $args[0].eyeWear = $args[1].eyeWear>> + <<set $args[0].eyewear = $args[1].eyewear>> <<set $args[0].earwear = $args[1].earwear>> <<set $args[0].earsPiercing = $args[1].earsPiercing>> <<set $args[0].armAccessory = $args[1].armAccessory>> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index 575d4004b75..5c3c355a379 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -4186,11 +4186,11 @@ $He's got a <<else>> $He has nothing but small, perforated metal disks where $his ears should be. <</if>> - <<elseif $activeSlave.earWear == "none">> + <<elseif $activeSlave.earwear == "none">> $He has small unsightly holes on the sides of $his head. /*That can't be sanitary.*/ <<else>> The sides of $his head are smooth where $his ears should be, but upon closer inspection it is revealed that - <<if $activeSlave.earWear == "hearing aids">> + <<if $activeSlave.earwear == "hearing aids">> $his ear canals are fitted with hearing aids capped with a skin-matching sheet to obscure the hole. <<else>> $his ear canals are filled with plugs with skin-matching caps. -- GitLab