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

◆ checkDPSTime()

void Terraria.Player.checkDPSTime ( )
inline

Definition at line 54845 of file Player.cs.

54846 {
54847 int num = 3;
54848 if (dpsStarted && (DateTime.Now - dpsLastHit).Seconds >= num)
54849 {
54850 dpsStarted = false;
54851 }
54852 }
DateTime dpsLastHit
Definition Player.cs:2785

References Terraria.Player.dpsLastHit, and Terraria.Player.dpsStarted.