add a version tag to wind and cloud data updates to iclient

This commit is contained in:
UbitUmarov
2016-09-23 13:03:16 +01:00
parent 984cb38583
commit a6df626868
7 changed files with 17 additions and 14 deletions

View File

@@ -203,7 +203,7 @@ namespace OpenSim.Region.CoreModules.World
{
if (m_ready)
{
client.SendCloudData(cloudCover);
client.SendCloudData(0, cloudCover);
}
}

View File

@@ -430,7 +430,7 @@ namespace OpenSim.Region.CoreModules
m_scene.ForEachRootClient(delegate(IClientAPI client)
{
client.SendWindData(windSpeeds);
client.SendWindData(0, windSpeeds);
});
}