Lokai
Neophyte III
Problem: According to online guides, Fish Heads show "Recovered from a shipwreck". In the code we are making them an "Item" rather than a "ShipwreckItem" which is causing them to not have that designation.
Solution: In Fishing.cs, around line 447, change this:
to this:
Problem: Table Legs and Unfinished Drawers have no weight. They should weigh 1 stone.
Solution: In ShipwreckedItem.cs, line 21, change this:
to this:
Solution: In Fishing.cs, around line 447, change this:
Code:
if (ran < 0.05)
preLoot = new YellowPolkaDotBikini();
else if (ran < 0.25)
preLoot = new ShipwreckedItem(list[Utility.RandomMinMax(3, 7)], dredge);
else
preLoot = new Item(list[Utility.Random(3)]);
break;
to this:
Code:
double ran = Utility.RandomDouble();
if (ran < 0.05)
preLoot = new YellowPolkaDotBikini();
else if (ran < 0.25)
preLoot = new ShipwreckedItem(list[Utility.RandomMinMax(3, 7)], dredge);
else
preLoot = new ShipwreckedItem(list[Utility.Random(3)], dredge);
break;
Problem: Table Legs and Unfinished Drawers have no weight. They should weigh 1 stone.
Solution: In ShipwreckedItem.cs, line 21, change this:
Code:
if (weight >= 255)
weight = 1;
to this:
Code:
if (weight >= 255 || weight <= 0)
weight = 1;