aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorfly-man-2018-08-16 11:34:27 +0200
committerUbitUmarov2019-02-01 12:38:59 +0000
commit45de5eb638ed2a6e7977a2213f2595215d74e46c (patch)
tree1f3ef557bc8943cae3b19f809fdeba4959c0ce33 /OpenSim
parentchange default config: allow grid gods by default, if you don't trust grid ad... (diff)
downloadopensim-SC-45de5eb638ed2a6e7977a2213f2595215d74e46c.zip
opensim-SC-45de5eb638ed2a6e7977a2213f2595215d74e46c.tar.gz
opensim-SC-45de5eb638ed2a6e7977a2213f2595215d74e46c.tar.bz2
opensim-SC-45de5eb638ed2a6e7977a2213f2595215d74e46c.tar.xz
Allow Grid owners to regenerate a maptile for a region manually through the use of the God Tools
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
Diffstat (limited to 'OpenSim')
-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))