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

◆ Heal()

void Terraria.Player.Heal ( int amount)
inline

Definition at line 33301 of file Player.cs.

33302 {
33303 statLife += amount;
33304 if (Main.myPlayer == whoAmI)
33305 {
33307 }
33308 if (statLife > statLifeMax2)
33309 {
33311 }
33312 }
void HealEffect(int healAmount, bool broadcast=true)
Definition Player.cs:3828

References Terraria.Main.myPlayer.