diff options
author | Teravus Ovares | 2008-05-03 15:39:40 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-03 15:39:40 +0000 |
commit | e8acb49fefc0e567510b4058b6571599a0158b62 (patch) | |
tree | d87243f8d596b6df07db190ba30bf2da4d608c18 /OpenSim/Region/ClientStack | |
parent | * Committing some collision stuffs that I'm working on. (diff) | |
download | opensim-SC_OLD-e8acb49fefc0e567510b4058b6571599a0158b62.zip opensim-SC_OLD-e8acb49fefc0e567510b4058b6571599a0158b62.tar.gz opensim-SC_OLD-e8acb49fefc0e567510b4058b6571599a0158b62.tar.bz2 opensim-SC_OLD-e8acb49fefc0e567510b4058b6571599a0158b62.tar.xz |
* For your fragging desire, damage enabled land works, but watch out!, life does not regenerate until you're dead!
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 9d77a14..c890b31 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -4849,6 +4849,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4849 | 4849 | ||
4850 | OutPacket(logReply, ThrottleOutPacketType.Task); | 4850 | OutPacket(logReply, ThrottleOutPacketType.Task); |
4851 | } | 4851 | } |
4852 | public void SendHealth(float health) | ||
4853 | { | ||
4854 | HealthMessagePacket healthpacket = (HealthMessagePacket)PacketPool.Instance.GetPacket(PacketType.HealthMessage); | ||
4855 | healthpacket.HealthData.Health = health; | ||
4856 | OutPacket(healthpacket, ThrottleOutPacketType.Task); | ||
4857 | } | ||
4852 | 4858 | ||
4853 | public ClientInfo GetClientInfo() | 4859 | public ClientInfo GetClientInfo() |
4854 | { | 4860 | { |