diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 357d16a8bb..544455c532 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 } return true; + case "refreshmapvisibility": + if (((Scene)m_scene).Permissions.CanIssueEstateCommand(AgentId, false)) + { + IMapImageGenerator mapModule = Scene.RequestModuleInterface(); + if (mapModule != null) + mapModule.CreateMapTile(); + } + return true; + case "kickestate": if(((Scene)m_scene).Permissions.CanIssueEstateCommand(AgentId, false))