#175 Strange behaviour of the "Max Milk Storage" value

Open
opened 2 years ago by ezsh · 4 comments
ezsh commented 2 years ago

Started the game with the popular group that set Sveta to the D cup. After inducing lactation (massaging) the stats in cheat menu showed max storage value of 318 ml. Then Sveta in a single day discovered she is pregnant and visited Tatiana where increased bust size to the F cup. Next morning the max storage volume decreased to 255 ml. How so?

outputs from func('lact_lib','show_breast_stat') follow. Both with F-cups, the first one for evening, the second one is for the next morning:

lactation['breastcount'] = 2
lactation['breasttissueinitiated'] = 1
lactation['breastglandtissue']] = 318
lactation['breastdensitypercent'] = 36
lactation['maturebreast'] = 0
lactation['alveolicount'] = 0
lactation['prolactinlvl'] = 100
lactation['dailyoverdemand'] = 495070
lactation['alveoliexpandlvl'] = 10
lactation['active'] = 1
lactation['lactaterate'] = 8335
lactation['breastmm'] = 318000
lactation['breastmv'] = 81961

lactation['breastcount'] = 2
lactation['breasttissueinitiated'] = 1
lactation['breastglandtissue']] = 255
lactation['breastdensitypercent'] = 36
lactation['maturebreast'] = 0
lactation['alveolicount'] = 0
lactation['prolactinlvl'] = 100
lactation['dailyoverdemand'] = 0
lactation['alveoliexpandlvl'] = 10
lactation['active'] = 1
lactation['lactaterate'] = 9080
lactation['breastmm'] = 255000
lactation['breastmv'] = 144776

The bug, perhaps, also manifests itself in seems to be unlimited "max storage volume" increase when repeatedly enabling/disabling the lactation via the cheat menu.

Started the game with the popular group that set Sveta to the D cup. After inducing lactation (massaging) the stats in cheat menu showed max storage value of 318 ml. Then Sveta in a single day discovered she is pregnant and visited Tatiana where increased bust size to the F cup. Next morning the max storage volume decreased to 255 ml. How so? outputs from `func('lact_lib','show_breast_stat')` follow. Both with F-cups, the first one for evening, the second one is for the next morning: ``` lactation['breastcount'] = 2 lactation['breasttissueinitiated'] = 1 lactation['breastglandtissue']] = 318 lactation['breastdensitypercent'] = 36 lactation['maturebreast'] = 0 lactation['alveolicount'] = 0 lactation['prolactinlvl'] = 100 lactation['dailyoverdemand'] = 495070 lactation['alveoliexpandlvl'] = 10 lactation['active'] = 1 lactation['lactaterate'] = 8335 lactation['breastmm'] = 318000 lactation['breastmv'] = 81961 lactation['breastcount'] = 2 lactation['breasttissueinitiated'] = 1 lactation['breastglandtissue']] = 255 lactation['breastdensitypercent'] = 36 lactation['maturebreast'] = 0 lactation['alveolicount'] = 0 lactation['prolactinlvl'] = 100 lactation['dailyoverdemand'] = 0 lactation['alveoliexpandlvl'] = 10 lactation['active'] = 1 lactation['lactaterate'] = 9080 lactation['breastmm'] = 255000 lactation['breastmv'] = 144776 ``` The bug, perhaps, also manifests itself in seems to be unlimited "max storage volume" increase when repeatedly enabling/disabling the lactation via the cheat menu.
Kevin_Smarts commented 2 years ago
Owner

From what I can see and its very complex code, the brest tissue density has to have lowered for you to get a lower result with larger cup size. That in turn is based on body fat:

    if salo <= 20:
        lactation['breastdensitypercent'] = 93
    elseif salo > 100:
        lactation['breastdensitypercent'] = 17
    else
        lactation['breastdensitypercent'] = 112 - ((95*salo)/100)
    end

So if the salo value has chaged the density of tissue in the breasts reduces and makes the larger breasts able ot hold less. Don't ask me why or if this is expected behaviour as I have no idea. If it seems to be a bug to you then say so and I'll ask Milky_boobs about it but she's barely around atm.

From what I can see and its very complex code, the brest tissue density has to have lowered for you to get a lower result with larger cup size. That in turn is based on body fat: if salo <= 20: lactation['breastdensitypercent'] = 93 elseif salo > 100: lactation['breastdensitypercent'] = 17 else lactation['breastdensitypercent'] = 112 - ((95*salo)/100) end So if the salo value has chaged the density of tissue in the breasts reduces and makes the larger breasts able ot hold less. Don't ask me why or if this is expected behaviour as I have no idea. If it seems to be a bug to you then say so and I'll ask Milky_boobs about it but she's barely around atm.
ezsh commented 2 years ago
Poster

Yes, I think it is a bug. The salo value is at 86 and does not change during the referred sequence of events. And the cheat menu link does something wrong for sure.

Yes, I think it is a bug. The `salo` value is at 86 and does not change during the referred sequence of events. And the cheat menu link does something wrong for sure.
ezsh commented 2 years ago
Poster

The max volume also decreases when Sveta gains wait; a total absurd.

The max volume also decreases when Sveta gains wait; a total absurd.
Kevin_Smarts commented 2 years ago
Owner

We are reviewing teh density and making it either a random for a set range or fixed value depending on reacts to a Discord poll. Its looking like it'll be a range from below average to very high. This will apply to all starts regardless of starting breast size.

We are reviewing teh density and making it either a random for a set range or fixed value depending on reacts to a Discord poll. Its looking like it'll be a range from below average to very high. This will apply to all starts regardless of starting breast size.
Sign in to join this conversation.
No Label
No Milestone
No assignee
2 Participants
Loading...
Cancel
Save
There is no content yet.