diff options
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index f6ae639..dae525d 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -11023,5 +11023,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11023 | } | 11023 | } |
11024 | 11024 | ||
11025 | #endregion | 11025 | #endregion |
11026 | |||
11027 | public void SendRebakeAvatarTextures(UUID textureID) | ||
11028 | { | ||
11029 | RebakeAvatarTexturesPacket pack = | ||
11030 | (RebakeAvatarTexturesPacket)PacketPool.Instance.GetPacket(PacketType.RebakeAvatarTextures); | ||
11031 | |||
11032 | pack.TextureData = new RebakeAvatarTexturesPacket.TextureDataBlock(); | ||
11033 | pack.TextureData.TextureID = textureID; | ||
11034 | OutPacket(pack, ThrottleOutPacketType.Task); | ||
11035 | } | ||
11026 | } | 11036 | } |
11027 | } | 11037 | } |