Closed rainbowism closed 2 years ago
Beating Embryo's multiproc chance calculation is incorrect.
Steps to reproduce the behavior:
Embryo.CanMultiproc
Embryo.ProcChance
Partial chances should have the ability to proc an additional effect.
The bug is located here.
Line 258 and 270 shouldn't have a / 100 in the latter part of the calculation, using a scale from 0-100 rather than 0.0-1.0 like the non-multiproc version.
/ 100
Describe the Bug
Beating Embryo's multiproc chance calculation is incorrect.
To Reproduce
Steps to reproduce the behavior:
Embryo.CanMultiproc
and setEmbryo.ProcChance
to a value < 100%.Expected Behavior
Partial chances should have the ability to proc an additional effect.
Additional Context
The bug is located here.
Line 258 and 270 shouldn't have a
/ 100
in the latter part of the calculation, using a scale from 0-100 rather than 0.0-1.0 like the non-multiproc version.