From 025ac85a46834e303c42cbed146860b28265c7ef Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 21 Jun 2014 15:38:38 -0700 Subject: Bug fix in map teleports in varregions. The cherry was missing from the ice-cream Sunday: the packet itself was hardcoding the size of the region... --- .../CoreModules/World/WorldMap/WorldMapModule.cs | 26 ---------------------- 1 file changed, 26 deletions(-) (limited to 'OpenSim/Region/CoreModules') diff --git a/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs b/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs index e4977cf..2d28d6e 100644 --- a/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs +++ b/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs @@ -1121,32 +1121,6 @@ namespace OpenSim.Region.CoreModules.World.WorldMap block.SizeX = (ushort)r.RegionSizeX; block.SizeY = (ushort)r.RegionSizeY; blocks.Add(block); - // If these are larger than legacy regions, create fake map entries for the covered - // regions. The map system only does legacy sized regions so we have to fake map - // entries for all the covered regions. - if (r.RegionSizeX > Constants.RegionSize || r.RegionSizeY > Constants.RegionSize) - { - for (int x = 0; x < r.RegionSizeX / Constants.RegionSize; x++) - { - for (int y = 0; y < r.RegionSizeY / Constants.RegionSize; y++) - { - if (x == 0 && y == 0) - continue; - block = new MapBlockData - { - Access = r.Access, - MapImageId = r.TerrainImage, - Name = r.RegionName, - X = (ushort)((r.RegionLocX / Constants.RegionSize) + x), - Y = (ushort)((r.RegionLocY / Constants.RegionSize) + y), - SizeX = (ushort)r.RegionSizeX, - SizeY = (ushort)r.RegionSizeY - }; - //Child piece, so ignore it - blocks.Add(block); - } - } - } } return blocks; } -- cgit v1.1