Skip to content
Snippets Groups Projects
Commit 1da09aea authored by Arkerthan's avatar Arkerthan
Browse files

fix spelling

parent d25f272d
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......@@ -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"
......
......@@ -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. `;
......
......@@ -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>>
......
......@@ -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.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment