diff --git a/game.js b/game.js index 7241f7b..07ec490 100644 --- a/game.js +++ b/game.js @@ -3121,6 +3121,7 @@ function enable_panel(name) { function enable_stat(name) { document.getElementById(name).style.display = 'block'; + document.querySelector("#" + name + "Meter .meterLabel").style.display = 'block'; } function enable_growth_part(name) { diff --git a/recursive-desc.js b/recursive-desc.js index fc792b7..cfdd610 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -380,7 +380,7 @@ function defaultSheathAbsorb(container, macro, verbose) { if (container.count > 0) return "You grip your sheath and give it a firm squeeze, abruptly absorbing " + container.describe(false) + " into your musky body."; else - return defaultSheathSqueeze(container, macro, verbose); + return defaultSheathToy(container, macro, verbose); } function defaultCockVore(container, macro, verbose) { @@ -441,7 +441,7 @@ function defaultFemaleOrgasm(container, macro, verbose) { if (container.count == 0) return "Your moist slit sprays $TIMES times, gushing out $VOLUME of slick femcum."; else if (isSadistic(macro)) - return "Your quivering slit sprays $VOLUME of your intoxicating femcum, dissolving " + container.describe(verbose) + "in an unstoppable torrent of deadly lust."; + return "Your quivering slit sprays $VOLUME of your intoxicating femcum, dissolving " + container.describe(verbose) + " in an unstoppable torrent of deadly lust."; else if (isFatal(macro)) return "Your moist slit sprays $VOLUME of slick femcum, obliterating " + container.describe(verbose) + " in $TIMES consecutive bursts of lust."; else diff --git a/stroll.html b/stroll.html index 734dbc7..d14aa6d 100644 --- a/stroll.html +++ b/stroll.html @@ -750,12 +750,12 @@
  • + -
  • + -
  • diff --git a/style.css b/style.css index d210112..fcd29d7 100644 --- a/style.css +++ b/style.css @@ -501,6 +501,7 @@ ul { } .meter .meterLabel { + display: none; z-index: 1; writing-mode: vertical-lr; text-orientation: upright; @@ -510,8 +511,9 @@ ul { font-size: 12px; text-align: center; position: absolute; - top: 0; - left: 0; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); } .meter .fill { diff --git a/units.js b/units.js index b263ff4..cb4fcd8 100644 --- a/units.js +++ b/units.js @@ -295,7 +295,7 @@ function metricVolume(m3, singular=false) { let volume = round(m3, 0); return volume + (singular || volume == 1 ? " cubic meter" : " cubic meters"); } else if (m3 < 1e12){ - let volume = round(m3/1e9, 6); + let volume = round(m3/1e9, 3); return volume + (singular || volume == 1 ? " cubic kilometer" : " cubic kilometers"); } else { let volume = round(m3/1e9, 0);