Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Fishing_GetBestFishingPole()

void Terraria.Player.Fishing_GetBestFishingPole ( out int fishingPolePower,
out int fishingPoleType )
inlineprivate

Definition at line 40348 of file Player.cs.

40349 {
40352 if (fishingPolePower != 0)
40353 {
40354 return;
40355 }
40356 for (int i = 0; i < 58; i++)
40357 {
40358 if (inventory[i].fishingPole > fishingPolePower)
40359 {
40362 }
40363 }
40364 }
int fishingPole
Definition Item.cs:97
Item[] inventory
Definition Player.cs:1257

References Terraria.Item.fishingPole, and Terraria.Item.type.