diff options
author | UbitUmarov | 2016-09-23 13:03:16 +0100 |
---|---|---|
committer | UbitUmarov | 2016-09-23 13:03:16 +0100 |
commit | a6df626868c9715288b2ef025efe18a015256a74 (patch) | |
tree | c7b6114d2c9a8df39280421cde9141683b8796b6 /OpenSim/Region/CoreModules | |
parent | move wind generation out of heartbeat to a pool job. Use that to send to all ... (diff) | |
download | opensim-SC_OLD-a6df626868c9715288b2ef025efe18a015256a74.zip opensim-SC_OLD-a6df626868c9715288b2ef025efe18a015256a74.tar.gz opensim-SC_OLD-a6df626868c9715288b2ef025efe18a015256a74.tar.bz2 opensim-SC_OLD-a6df626868c9715288b2ef025efe18a015256a74.tar.xz |
add a version tag to wind and cloud data updates to iclient
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Cloud/CloudModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/World/Wind/WindModule.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/Cloud/CloudModule.cs b/OpenSim/Region/CoreModules/World/Cloud/CloudModule.cs index d217f36..f304307 100644 --- a/OpenSim/Region/CoreModules/World/Cloud/CloudModule.cs +++ b/OpenSim/Region/CoreModules/World/Cloud/CloudModule.cs | |||
@@ -203,7 +203,7 @@ namespace OpenSim.Region.CoreModules.World | |||
203 | { | 203 | { |
204 | if (m_ready) | 204 | if (m_ready) |
205 | { | 205 | { |
206 | client.SendCloudData(cloudCover); | 206 | client.SendCloudData(0, cloudCover); |
207 | } | 207 | } |
208 | } | 208 | } |
209 | 209 | ||
diff --git a/OpenSim/Region/CoreModules/World/Wind/WindModule.cs b/OpenSim/Region/CoreModules/World/Wind/WindModule.cs index 9f13d90..f1de0bc 100644 --- a/OpenSim/Region/CoreModules/World/Wind/WindModule.cs +++ b/OpenSim/Region/CoreModules/World/Wind/WindModule.cs | |||
@@ -430,7 +430,7 @@ namespace OpenSim.Region.CoreModules | |||
430 | 430 | ||
431 | m_scene.ForEachRootClient(delegate(IClientAPI client) | 431 | m_scene.ForEachRootClient(delegate(IClientAPI client) |
432 | { | 432 | { |
433 | client.SendWindData(windSpeeds); | 433 | client.SendWindData(0, windSpeeds); |
434 | }); | 434 | }); |
435 | 435 | ||
436 | } | 436 | } |