aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 357d16a..544455c 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -10157,6 +10157,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP
10157 } 10157 }
10158 return true; 10158 return true;
10159 10159
10160 case "refreshmapvisibility":
10161 if (((Scene)m_scene).Permissions.CanIssueEstateCommand(AgentId, false))
10162 {
10163 IMapImageGenerator mapModule = Scene.RequestModuleInterface<IMapImageGenerator>();
10164 if (mapModule != null)
10165 mapModule.CreateMapTile();
10166 }
10167 return true;
10168
10160 case "kickestate": 10169 case "kickestate":
10161 10170
10162 if(((Scene)m_scene).Permissions.CanIssueEstateCommand(AgentId, false)) 10171 if(((Scene)m_scene).Permissions.CanIssueEstateCommand(AgentId, false))