Skip to content
Snippets Groups Projects
Commit 0d46d308 authored by svornost's avatar svornost
Browse files

Avoid leading decimal

parent 6526b08e
No related branches found
No related tags found
No related merge requests found
...@@ -142,7 +142,7 @@ window.saHormonesEffects = (function saHormonesEffects() { ...@@ -142,7 +142,7 @@ window.saHormonesEffects = (function saHormonesEffects() {
if (slave.hormoneBalance > 30 && slave.geneMods.NCS !== 1) { if (slave.hormoneBalance > 30 && slave.geneMods.NCS !== 1) {
/* 'Expected' breast size based on weight for feminine-bodied slaves */ /* 'Expected' breast size based on weight for feminine-bodied slaves */
normBreasts = Math.trunc((100 + (slave.weight + 100) * 5 + 2 * slave.lactationAdaptation) * (0.85 + slave.hormoneBalance / 400) * gigantomastiaMod); normBreasts = Math.trunc((100 + (slave.weight + 100) * 5 + 2 * slave.lactationAdaptation) * (0.85 + slave.hormoneBalance / 400) * gigantomastiaMod);
normButt = ((slave.weight + 100) * .025 * (0.9 + slave.hormoneBalance / 600) * (rearLipedemaMod / 2 + 1)); normButt = ((slave.weight + 100) * 0.025 * (0.9 + slave.hormoneBalance / 600) * (rearLipedemaMod / 2 + 1));
} }
if (slave.hormoneBalance >= 350) { if (slave.hormoneBalance >= 350) {
......
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