Solved Bug in code around quality bobber

BlaDe

Farmer
In the constructor for BobberBar there is this code:

if (this.whichBobber == 877)
{
this.fishQuality++;
if (this.fishQuality > 2)
{
this.fishQuality = 4;
}
}

877 is the index of the quality bobber.

whichBobber is not set until the end of the method, so will always be 0 at the point this code is executed.
 

Odin

Moderator
Staff member
This should be fixed in 1.5.3! Please mention if it's still an issue for you after updating.
 
Top