diff options
author | UbitUmarov | 2019-02-01 12:52:58 +0000 |
---|---|---|
committer | UbitUmarov | 2019-02-01 12:52:58 +0000 |
commit | 6bb8055cc23c31a729b06ee499c54562ba1c2f69 (patch) | |
tree | 287d2d3c14b519a6bdc132f47c68b790b79a80cb /OpenSim | |
parent | Allow Grid owners to regenerate a maptile for a region manually through the u... (diff) | |
download | opensim-SC-6bb8055cc23c31a729b06ee499c54562ba1c2f69.zip opensim-SC-6bb8055cc23c31a729b06ee499c54562ba1c2f69.tar.gz opensim-SC-6bb8055cc23c31a729b06ee499c54562ba1c2f69.tar.bz2 opensim-SC-6bb8055cc23c31a729b06ee499c54562ba1c2f69.tar.xz |
change last commit to do as console comand generate map
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 544455c..72142f2 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -10160,9 +10160,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
10160 | case "refreshmapvisibility": | 10160 | case "refreshmapvisibility": |
10161 | if (((Scene)m_scene).Permissions.CanIssueEstateCommand(AgentId, false)) | 10161 | if (((Scene)m_scene).Permissions.CanIssueEstateCommand(AgentId, false)) |
10162 | { | 10162 | { |
10163 | IMapImageGenerator mapModule = Scene.RequestModuleInterface<IMapImageGenerator>(); | 10163 | IWorldMapModule mapModule = Scene.RequestModuleInterface<IWorldMapModule>(); |
10164 | if (mapModule != null) | 10164 | if (mapModule != null) |
10165 | mapModule.CreateMapTile(); | 10165 | mapModule.GenerateMaptile(); |
10166 | } | 10166 | } |
10167 | return true; | 10167 | return true; |
10168 | 10168 | ||