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

◆ ShadowDodge()

void Terraria.Player.ShadowDodge ( )
inline

Definition at line 36019 of file Player.cs.

36020 {
36022 if (whoAmI != Main.myPlayer)
36023 {
36024 return;
36025 }
36026 for (int i = 0; i < maxBuffs; i++)
36027 {
36028 if (buffTime[i] > 0 && buffType[i] == 59)
36029 {
36030 DelBuff(i);
36031 }
36032 }
36034 NetMessage.SendData(62, -1, -1, null, whoAmI, 2f);
36035 }
static readonly int maxBuffs
Definition Player.cs:1191
void SetImmuneTimeForAllTypes(int time)
Definition Player.cs:36009
void PutHallowedArmorSetBonusOnCooldown()
Definition Player.cs:36037
void DelBuff(int b)
Definition Player.cs:4602

References Terraria.Main.myPlayer, and Terraria.NetMessage.SendData().