*added symbolic units for metric and customary. (EX m instead of metet)
*removed some "-" from body part descriptions that didn't make sense
*toggle units button now displays the correct units on start
@@ -1666,9 +1666,11 @@ let macro = //macro controls every customizable part of the players body
}
if (this.maleParts) {
if (this.hasSheath && this.arousal < 75) {
line = "Your " + this.describeDick + " is hidden away in your bulging sheath, with two " + mass(macro.ballMass, unit, true) + ", " + length(macro.ballDiameter, unit, true) + "-wide balls hanging beneath.";
line = "Your " + this.describeDick + " cock is hidden away in your bulging sheath, with two " + mass(macro.ballMass, unit, true) + ", " + length(macro.ballDiameter, unit, true) + " wide balls hanging beneath.";
} else {
line = "Your " + this.describeDick + " hangs from your hips, with two " + mass(macro.ballMass, unit, true) + ", " + length(macro.ballDiameter, unit, true) + "-wide balls hanging beneath.";
line = "Your " + this.describeDick + " cock hangs from your hips, with two " + mass(macro.ballMass, unit, true) + ", " + length(macro.ballDiameter, unit, true) + " wide balls hanging beneath.";
}
result.push(line);
result.push(macro.balls.description);
@@ -1681,7 +1683,7 @@ let macro = //macro controls every customizable part of the players body
}
if (this.hasBreasts) {
line = "You have two " + length(this.breastDiameter, unit, true) + "-wide breasts that weigh " + mass(macro.breastMass, unit) + " apiece.";
line = "You have two " + length(this.breastDiameter, unit, true) + "wide breasts that weigh " + mass(macro.breastMass, unit) + " apiece.";
if (this.lactationEnabled) {
line += " They slosh with " + volume(this.milkStorage.amount, unit, false) + " of creamy milk.";
@@ -1736,7 +1738,7 @@ let macro = //macro controls every customizable part of the players body
document.getElementById("button-option-toggle_units").innerText = "Units:\n" + unit.charAt(0).toUpperCase() + unit.slice(1); //sets units button to display selected unit on start