diff --git a/src/js/statsChecker/statsChecker.js b/src/js/statsChecker/statsChecker.js index 5e140176664b4d181384f63cacdb92771a31a8b8..44d24b3217666d38a75315a0a2c453e940abb235 100644 --- a/src/js/statsChecker/statsChecker.js +++ b/src/js/statsChecker/statsChecker.js @@ -115,7 +115,7 @@ globalThis.SlaveStatsChecker = (function() { score += 1.25; } if (slave.lipsTat !== 0) { - score += 1.25; + score += 1.5; } if (slave.shouldersTat !== 0) { score += 1; @@ -224,7 +224,7 @@ globalThis.SlaveStatsChecker = (function() { const brands = brandScore(slave); const scars = scarScore(slave); - return (!isModded(slave) && slave.piercing.corset.weight === 0 && piercings < 3 && tattoos < 2 && brands < 2 && scars <= 1); + return (!isModded(slave) && slave.piercing.corset.weight === 0 && piercings < 3 && tattoos < 1.5 && brands < 2 && scars <= 1); } }());