diff options
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 | { |