[0.69.420-PUBLIC#1911] Equilicum math breaking out of its restraints

one_two

Well-Known Member
Jan 20, 2022
457
130
Long story short, Equilicum doesn't take into account the cum quantity modifier while doing its math. As a result, it can break out of self-imposed restraints with wild abandon.

Theory:
//do capping - target can't gain more than 10inches, 20L unless target has bulgy perk

Practice:

starting with...

1651590081593.png

...after one dose of equilicum:

1651590089644.png

... after another dose:

1651590097844.png

... and so on until you wind up trying to drag around a dozen or so human-sized balls, and need to be moved to hospital for some emergency trimming.

A stop gap measure to this bug/feature could be a small change in equilicum.js

JavaScript:
    postMasturbation(target)
    {
// ...      
        let maxCumInLiters = target.maxCum() / 1000;

change to

JavaScript:
        let maxCumInLiters = target.maxCum() / target.cumMultiplier() / 1000;

this won't fix the growth logic entirely, but should stop it from trying to fit "uncompressed" amount of cum in your balls.