diff options
author | Melanie | 2013-04-22 22:24:41 +0200 |
---|---|---|
committer | Melanie | 2013-04-22 22:39:08 +0100 |
commit | 293a024c141d3567d42169f625bc449b89a1b59d (patch) | |
tree | f8d7064f5e2fa813ee8a15f1b6e235d3c79620db /OpenSim/Region/CoreModules | |
parent | Clean up unused config and config comments. (diff) | |
download | opensim-SC_OLD-293a024c141d3567d42169f625bc449b89a1b59d.zip opensim-SC_OLD-293a024c141d3567d42169f625bc449b89a1b59d.tar.gz opensim-SC_OLD-293a024c141d3567d42169f625bc449b89a1b59d.tar.bz2 opensim-SC_OLD-293a024c141d3567d42169f625bc449b89a1b59d.tar.xz |
Allow callers to set the invoice parameter for GenericMessage
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/World/LightShare/LightShareModule.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/LightShare/LightShareModule.cs b/OpenSim/Region/CoreModules/World/LightShare/LightShareModule.cs index 4e20196..89f3280 100644 --- a/OpenSim/Region/CoreModules/World/LightShare/LightShareModule.cs +++ b/OpenSim/Region/CoreModules/World/LightShare/LightShareModule.cs | |||
@@ -195,12 +195,12 @@ namespace OpenSim.Region.CoreModules.World.LightShare | |||
195 | if (m_scene.RegionInfo.WindlightSettings.valid) | 195 | if (m_scene.RegionInfo.WindlightSettings.valid) |
196 | { | 196 | { |
197 | List<byte[]> param = compileWindlightSettings(wl); | 197 | List<byte[]> param = compileWindlightSettings(wl); |
198 | client.SendGenericMessage("Windlight", param); | 198 | client.SendGenericMessage("Windlight", UUID.Random(), param); |
199 | } | 199 | } |
200 | else | 200 | else |
201 | { | 201 | { |
202 | List<byte[]> param = new List<byte[]>(); | 202 | List<byte[]> param = new List<byte[]>(); |
203 | client.SendGenericMessage("WindlightReset", param); | 203 | client.SendGenericMessage("WindlightReset", UUID.Random(), param); |
204 | } | 204 | } |
205 | } | 205 | } |
206 | } | 206 | } |