diff --git a/Changelog.txt b/Changelog.txt index 7c03a8d98a103ad261cf53ed34784315b144faef..fab7c58b6072c5c814cac74ca0a2959ed16eef55 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 620b623151d0e5233167ca5dc3e6efbb0814fef5..af36f9621c161d621a8f720364e254c4fe40b741 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 e3084dfc2a9c6d8e6f38b0117b02414b5325f19a..ff71613537b7dded366a659a839086754c8ccc19 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 7fc49d9fb0a98bf93dcd89ca7c5b2849a38ee02a..fd42ae4678e9e398426688a4402f2ba324f4e3a4 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 ec290653ad3e65ed2e52427acdf222655d89e5dd..531b42fadefaf3d95c60eef654cdd41354aa21d6 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 575d4004b75c6cab4be66a7d432dcf3eb3be7b1c..5c3c355a379924d9ebeca5c33ef7168ab3c63959 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.