diff options
author | UbitUmarov | 2014-09-30 04:24:31 +0100 |
---|---|---|
committer | UbitUmarov | 2014-09-30 04:24:31 +0100 |
commit | c704b079d8973ea491a9013b08bb8ace3979cd93 (patch) | |
tree | bf55732999baaf0de8e57342e804cc04905e7f52 /OpenSim/Region/CoreModules | |
parent | fix musicURL change being sent back with wrong snap_selection, and not (diff) | |
download | opensim-SC-c704b079d8973ea491a9013b08bb8ace3979cd93.zip opensim-SC-c704b079d8973ea491a9013b08bb8ace3979cd93.tar.gz opensim-SC-c704b079d8973ea491a9013b08bb8ace3979cd93.tar.bz2 opensim-SC-c704b079d8973ea491a9013b08bb8ace3979cd93.tar.xz |
persist script changes to mediaURL and musicURL ( heavy thing )
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/LandObject.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandObject.cs b/OpenSim/Region/CoreModules/World/Land/LandObject.cs index e002feb..a3cd4a5 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandObject.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandObject.cs | |||
@@ -1244,6 +1244,7 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
1244 | public void SetMediaUrl(string url) | 1244 | public void SetMediaUrl(string url) |
1245 | { | 1245 | { |
1246 | LandData.MediaURL = url; | 1246 | LandData.MediaURL = url; |
1247 | m_scene.LandChannel.UpdateLandObject(LandData.LocalID, LandData); | ||
1247 | SendLandUpdateToAvatarsOverMe(); | 1248 | SendLandUpdateToAvatarsOverMe(); |
1248 | } | 1249 | } |
1249 | 1250 | ||
@@ -1254,6 +1255,7 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
1254 | public void SetMusicUrl(string url) | 1255 | public void SetMusicUrl(string url) |
1255 | { | 1256 | { |
1256 | LandData.MusicURL = url; | 1257 | LandData.MusicURL = url; |
1258 | m_scene.LandChannel.UpdateLandObject(LandData.LocalID, LandData); | ||
1257 | SendLandUpdateToAvatarsOverMe(); | 1259 | SendLandUpdateToAvatarsOverMe(); |
1258 | } | 1260 | } |
1259 | 1261 | ||