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

◆ CatchFish()

static void Terraria.ModLoader.PlayerLoader.CatchFish ( Player player,
FishingAttempt attempt,
ref int itemDrop,
ref int enemySpawn,
ref AdvancedPopupRequest sonar,
ref Vector2 sonarPosition )
inlinestatic

Definition at line 1680 of file PlayerLoader.cs.

1681 {
1682 FilteredSpanEnumerator<ModPlayer> enumerator = HookCatchFish.Enumerate(player).GetEnumerator();
1683 while (enumerator.MoveNext())
1684 {
1685 enumerator.Current.CatchFish(attempt, ref itemDrop, ref enemySpawn, ref sonar, ref sonarPosition);
1686 }
1687 }
static HookList< ModPlayer > HookCatchFish

References Terraria.ModLoader.PlayerLoader.HookCatchFish.

Referenced by Terraria.Projectile.FishingCheck().

+ Here is the caller graph for this function: