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:
Practice:
starting with...
...after one dose of equilicum:
... after another dose:
... 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
change to
this won't fix the growth logic entirely, but should stop it from trying to fit "uncompressed" amount of cum in your balls.
Theory:
//do capping - target can't gain more than 10inches, 20L unless target has bulgy perk
Practice:
starting with...
...after one dose of equilicum:
... after another dose:
... 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.