diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js index 4d955ddf8eae09a01e6ca3faed26f9c153464f5f..b440b57db2f1c5cb0cb5c2473b8b9cbe6910677a 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"); }