From 8b7a016fd4204f6248a415ec5159dcc3f12e0d12 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sun, 23 May 2021 03:55:28 -0400 Subject: [PATCH] Attempt to sync player boobs --- src/data/backwardsCompatibility/datatypeCleanup.js | 2 +- src/events/intro/pcBodyIntro.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/backwardsCompatibility/datatypeCleanup.js b/src/data/backwardsCompatibility/datatypeCleanup.js index 1a4f4d49307..74fa27b2076 100644 --- a/src/data/backwardsCompatibility/datatypeCleanup.js +++ b/src/data/backwardsCompatibility/datatypeCleanup.js @@ -1375,7 +1375,7 @@ globalThis.PCDatatypeCleanup = (function PCDatatypeCleanup() { * @param {App.Entity.PlayerState} PC */ function PCBoobsDatatypeCleanup(PC) { - PC.boobs = Math.max(+PC.boobs, 100) || 200; + PC.boobs = Math.max(+PC.boobs, 200) || 200; if (typeof PC.boobShape !== "string") { PC.boobShape = "normal"; } diff --git a/src/events/intro/pcBodyIntro.js b/src/events/intro/pcBodyIntro.js index 80c40ad5db3..1dd63998244 100644 --- a/src/events/intro/pcBodyIntro.js +++ b/src/events/intro/pcBodyIntro.js @@ -41,7 +41,7 @@ App.Intro.PCBodyIntro = function() { // Chest options.addOption("Under my suit jacket", "boobs", V.PC) - .addValue((V.PC.title > 0) ? `Masculine muscles` : `A flat chest`, 100) + .addValue((V.PC.title > 0) ? `Masculine muscles` : `A flat chest`, 200) .addValue("Feminine breasts", 900) .addComment("These options will affect scenes. Sporting breasts will increase difficulty"); -- GitLab