diff options
author | Dalien Talbot | 2007-11-18 07:58:04 +0000 |
---|---|---|
committer | Dalien Talbot | 2007-11-18 07:58:04 +0000 |
commit | 2cd00f46b9938164b32566843bdc013abc968297 (patch) | |
tree | b491fa51278bcf015b67be7795a9673e8d7628dc /OpenSim/Region/Environment/Scenes | |
parent | Looks like we're requesting the mapblocks for every agent - including (diff) | |
download | opensim-SC_OLD-2cd00f46b9938164b32566843bdc013abc968297.zip opensim-SC_OLD-2cd00f46b9938164b32566843bdc013abc968297.tar.gz opensim-SC_OLD-2cd00f46b9938164b32566843bdc013abc968297.tar.bz2 opensim-SC_OLD-2cd00f46b9938164b32566843bdc013abc968297.tar.xz |
For every problem there's a solution that is simple, neat and wrong.
Looks like it has nothing to do with childregions - reverting and will
try to debug after the sleep. Sorry for the noise :)
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index b6de1fb..2c765a3 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -937,10 +937,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
937 | /// <param name="maxY"></param> | 937 | /// <param name="maxY"></param> |
938 | public void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY) | 938 | public void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY) |
939 | { | 939 | { |
940 | if(!m_scenePresences[remoteClient.AgentId].IsChildAgent) | 940 | m_sceneGridService.RequestMapBlocks(remoteClient, minX, minY, maxX, maxX); |
941 | { | ||
942 | m_sceneGridService.RequestMapBlocks(remoteClient, minX, minY, maxX, maxX); | ||
943 | } | ||
944 | } | 941 | } |
945 | 942 | ||
946 | /// <summary> | 943 | /// <summary> |