aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World
diff options
context:
space:
mode:
authorUbitUmarov2017-07-12 07:27:21 +0100
committerUbitUmarov2017-07-12 07:27:21 +0100
commitaff9c345dddfa290222ceaf42b6c452a590a2276 (patch)
tree661bb6fa350162a0d3879e701bfe5a0ec6c1cf3a /OpenSim/Region/CoreModules/World
parent osSetParcelDetails: make seeAVs send updates. This is a temporary patch, thi... (diff)
downloadopensim-SC_OLD-aff9c345dddfa290222ceaf42b6c452a590a2276.zip
opensim-SC_OLD-aff9c345dddfa290222ceaf42b6c452a590a2276.tar.gz
opensim-SC_OLD-aff9c345dddfa290222ceaf42b6c452a590a2276.tar.bz2
opensim-SC_OLD-aff9c345dddfa290222ceaf42b6c452a590a2276.tar.xz
osSetParcelDetails: add more land update code
Diffstat (limited to 'OpenSim/Region/CoreModules/World')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandChannel.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandChannel.cs b/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
index b59e2af..5ff063b 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
@@ -176,6 +176,14 @@ namespace OpenSim.Region.CoreModules.World.Land
176 } 176 }
177 } 177 }
178 178
179 public void SendParcelsOverlay(IClientAPI client)
180 {
181 if (m_landManagementModule != null)
182 {
183 m_landManagementModule.SendParcelOverlay(client);
184 }
185 }
186
179 public void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id) 187 public void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id)
180 { 188 {
181 if (m_landManagementModule != null) 189 if (m_landManagementModule != null)