diff options
author | UbitUmarov | 2017-05-14 01:44:04 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-14 01:44:04 +0100 |
commit | cb21caae777341b7b4af724e86b9a82b9b827c43 (patch) | |
tree | d4eb86f9ba6fc1fd1c35015a335e7a1a55fa0ad1 /OpenSim/Region/ClientStack/Linden | |
parent | find parcels by GlobalID.. well most time (diff) | |
download | opensim-SC_OLD-cb21caae777341b7b4af724e86b9a82b9b827c43.zip opensim-SC_OLD-cb21caae777341b7b4af724e86b9a82b9b827c43.tar.gz opensim-SC_OLD-cb21caae777341b7b4af724e86b9a82b9b827c43.tar.bz2 opensim-SC_OLD-cb21caae777341b7b4af724e86b9a82b9b827c43.tar.xz |
fix some issue on parcels loading and make parcels dwell show something. Resolution is 2.5min aprox.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 5b3c3e6..6a3960d 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -3114,7 +3114,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
3114 | float dwell = 0.0f; | 3114 | float dwell = 0.0f; |
3115 | IDwellModule dwellModule = m_scene.RequestModuleInterface<IDwellModule>(); | 3115 | IDwellModule dwellModule = m_scene.RequestModuleInterface<IDwellModule>(); |
3116 | if (dwellModule != null) | 3116 | if (dwellModule != null) |
3117 | dwell = dwellModule.GetDwell(land.GlobalID); | 3117 | dwell = dwellModule.GetDwell(land); |
3118 | ParcelInfoReplyPacket reply = (ParcelInfoReplyPacket)PacketPool.Instance.GetPacket(PacketType.ParcelInfoReply); | 3118 | ParcelInfoReplyPacket reply = (ParcelInfoReplyPacket)PacketPool.Instance.GetPacket(PacketType.ParcelInfoReply); |
3119 | reply.AgentData.AgentID = m_agentId; | 3119 | reply.AgentData.AgentID = m_agentId; |
3120 | reply.Data.ParcelID = parcelID; | 3120 | reply.Data.ParcelID = parcelID; |