Raise /heal to 500 HP

This commit is contained in:
MarioE 2013-10-05 22:50:37 -04:00
parent 1388e9bcb3
commit b958b43f9b

View file

@ -598,9 +598,9 @@ namespace TShockAPI
return true;
}
public void Heal(int damage = 400)
public void Heal(int health = 500)
{
NetMessage.SendData((int)PacketTypes.PlayerHealOther, -1, -1, "", this.TPlayer.whoAmi, damage);
NetMessage.SendData((int)PacketTypes.PlayerHealOther, -1, -1, "", this.TPlayer.whoAmi, health);
}
public void Spawn()