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

◆ GetDesiredStormTigerMinionRank()

int Terraria.Player.GetDesiredStormTigerMinionRank ( )
inlineprivate

Definition at line 11762 of file Player.cs.

11763 {
11764 int result = 0;
11765 int num = ownedProjectileCounts[831];
11766 if (num > 0)
11767 {
11768 result = 1;
11769 }
11770 if (num > 3)
11771 {
11772 result = 2;
11773 }
11774 if (num > 6)
11775 {
11776 result = 3;
11777 }
11778 return result;
11779 }
int[] ownedProjectileCounts
Definition Player.cs:2545