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 e0753d5..848d31c 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -2598,6 +2598,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2598 | 2598 | ||
2599 | OutPacket(im, ThrottleOutPacketType.Texture); | 2599 | OutPacket(im, ThrottleOutPacketType.Texture); |
2600 | } | 2600 | } |
2601 | |||
2602 | public void SendImageNotFound(UUID imageid) | ||
2603 | { | ||
2604 | ImageNotInDatabasePacket notFoundPacket | ||
2605 | = (ImageNotInDatabasePacket)PacketPool.Instance.GetPacket(PacketType.ImageNotInDatabase); | ||
2606 | |||
2607 | notFoundPacket.ImageID.ID = imageid; | ||
2608 | |||
2609 | OutPacket(notFoundPacket, ThrottleOutPacketType.Texture); | ||
2610 | } | ||
2601 | 2611 | ||
2602 | public void SendShutdownConnectionNotice() | 2612 | public void SendShutdownConnectionNotice() |
2603 | { | 2613 | { |