diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP')
-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 | ||