From 85398ba6e5cae1b96390386fb00bec62e4ece9a4 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sat, 2 Jan 2021 19:44:49 -0500 Subject: [PATCH] Remove overrides for teeth in start girls --- src/npc/startingGirls/startingGirls.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js index 4d955ddf8ea..b440b57db2f 100644 --- a/src/npc/startingGirls/startingGirls.js +++ b/src/npc/startingGirls/startingGirls.js @@ -769,19 +769,10 @@ App.StartingGirls.physical = function(slave) { ]); if (slave.physicalAge >= 12) { - if (slave.teeth === "baby" || slave.teeth === "mixed") { - slave.teeth = "normal"; - } option.addValue("Straight", "normal"); } else if (slave.physicalAge >= 6) { - if (slave.teeth === "baby" || slave.teeth === "normal" || slave.teeth === "") { - slave.teeth = "mixed"; - } option.addValue("Mixed adult & child", "mixed"); } else { - if (slave.teeth === "mixed" || slave.teeth === "normal" || slave.teeth === "") { - slave.teeth = "mixed"; - } option.addValue("Baby", "baby"); } -- GitLab