diff options
author | fly-man- | 2018-08-16 11:34:27 +0200 |
---|---|---|
committer | UbitUmarov | 2019-02-01 12:38:59 +0000 |
commit | 45de5eb638ed2a6e7977a2213f2595215d74e46c (patch) | |
tree | 1f3ef557bc8943cae3b19f809fdeba4959c0ce33 /OpenSim | |
parent | change default config: allow grid gods by default, if you don't trust grid ad... (diff) | |
download | opensim-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.cs | 9 |
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)) |