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

◆ GetExplosiveTrapCooldown()

static int Terraria.Projectile.GetExplosiveTrapCooldown ( Player player)
inlinestatic

Definition at line 58323 of file Projectile.cs.

58324 {
58325 int result = 90;
58326 if (player.setHuntressT2)
58327 {
58328 result = 60;
58329 }
58330 if (player.setHuntressT3)
58331 {
58332 result = 30;
58333 }
58334 return result;
58335 }

References Terraria.Player.setHuntressT2, and Terraria.Player.setHuntressT3.

Referenced by Terraria.Player.ItemCheck_Shoot().