diff options
author | Adam Frisby | 2007-03-24 16:06:43 +0000 |
---|---|---|
committer | Adam Frisby | 2007-03-24 16:06:43 +0000 |
commit | 47c682075c874f7a01970d3557528722b89a6ffd (patch) | |
tree | 14b84cfbb5c0cba183bc97eb305c9109dd4b652d /OpenSim.RegionServer/SimClient.cs | |
parent | * Removed old prebuild prebuild file (diff) | |
download | opensim-SC_OLD-47c682075c874f7a01970d3557528722b89a6ffd.zip opensim-SC_OLD-47c682075c874f7a01970d3557528722b89a6ffd.tar.gz opensim-SC_OLD-47c682075c874f7a01970d3557528722b89a6ffd.tar.bz2 opensim-SC_OLD-47c682075c874f7a01970d3557528722b89a6ffd.tar.xz |
Applying Randomskk's patches
Diffstat (limited to 'OpenSim.RegionServer/SimClient.cs')
-rw-r--r-- | OpenSim.RegionServer/SimClient.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim.RegionServer/SimClient.cs b/OpenSim.RegionServer/SimClient.cs index b62d018..d271ea9 100644 --- a/OpenSim.RegionServer/SimClient.cs +++ b/OpenSim.RegionServer/SimClient.cs | |||
@@ -307,6 +307,10 @@ namespace OpenSim | |||
307 | FetchInventoryDescendentsPacket Fetch = (FetchInventoryDescendentsPacket)Pack; | 307 | FetchInventoryDescendentsPacket Fetch = (FetchInventoryDescendentsPacket)Pack; |
308 | OpenSimRoot.Instance.InventoryCache.FetchInventoryDescendents(this, Fetch); | 308 | OpenSimRoot.Instance.InventoryCache.FetchInventoryDescendents(this, Fetch); |
309 | break; | 309 | break; |
310 | case PacketType.DeRezObject: | ||
311 | //OpenSim.Framework.Console.MainConsole.Instance.WriteLine("Received DeRezObject packet"); | ||
312 | OpenSimRoot.Instance.LocalWorld.DeRezObject((DeRezObjectPacket)Pack, this); | ||
313 | break; | ||
310 | } | 314 | } |
311 | } | 315 | } |
312 | 316 | ||