Windows Two lead bobbers seem to be slightly worse than one

uwukia

Greenhorn
I can't seem to consistently make the bobber bar fall with the exact same mount of speed every time, but after doing lots of runs over time I saw a somewhat clear pattern.

One lead bobber will dampen the bounce to practically nothing most of the time (practically can't see the bounce) while with two lead bobbers, you do see a tiny amount of bounce every time.

left: 1 bobber | right: 2 bobbers

1788817431526.png


Upon inspection, the relevant code seems to be BobberBar.cs, when the bar bounces up,


C#:
this.bobberBarSpeed = (0f - this.bobberBarSpeed) * 2f / 3f
    * (this.bobbers.Contains("(O)692") ?
       ((float)Utility.getStringCountInList(this.bobbers, "(O)692") * 0.1f) : 1f
      );
This means that with 1 lead bobber, the speed is dampened by 10% while with two lead bobbers, the speed is dampened by 20%, instead of less than 10%.

v1.6.15 build 24356
 
Top