diff --git a/src/endWeek/saLongTermPhysicalEffects.js b/src/endWeek/saLongTermPhysicalEffects.js index 6f07cb3c580c5f1ff606bde09ccf9c62dff4d3d9..d58558804509e6ab78d10ce7f9cebeb6e8c4b42c 100644 --- a/src/endWeek/saLongTermPhysicalEffects.js +++ b/src/endWeek/saLongTermPhysicalEffects.js @@ -156,20 +156,20 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { slave.teeth = "fangs"; r.push (`${His} baby teeth have fully grown into a pretty but intimidatingly sharp set of feline fangs.`); } else { - const crookedTeethGen = ((faceValue + 100) / 10); - if (random(0, crookedTeethGen) < 5) { - r.push(`Unfortunately,`); - if (random(0, 5) < 1) { - slave.teeth = "gapped"; - r.push(`${he} has a large <span class="noteworthy">gap</span> between ${his} front teeth that`); + const crookedTeethGen = ((faceValue + 100) / 10); + if (random(0, crookedTeethGen) < 5) { + r.push(`Unfortunately,`); + if (random(0, 5) < 1) { + slave.teeth = "gapped"; + r.push(`${he} has a large <span class="noteworthy">gap</span> between ${his} front teeth that`); + } else { + slave.teeth = "crooked"; + r.push(`${his} teeth came in <span class="noteworthy">crooked</span> and`); + } + r.push(`will require braces to correct.`); } else { - slave.teeth = "crooked"; - r.push(`${his} teeth came in <span class="noteworthy">crooked</span> and`); - } - r.push(`will require braces to correct.`); - } else { - r.push(`${He} has <span class="noteworthy">quite the lovely smile.</span>`); - slave.teeth = "normal"; + r.push(`${He} has <span class="noteworthy">quite the lovely smile.</span>`); + slave.teeth = "normal"; } } }