diff options
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 22bff9f..fea9ddf 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -1240,9 +1240,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1240 | try | 1240 | try |
1241 | { | 1241 | { |
1242 | int[] patches = new int[] { py * 16 + px }; | 1242 | int[] patches = new int[] { py * 16 + px }; |
1243 | float[] heightmap = (map.Length == 65536) ? | 1243 | float[] heightmap = (map.Length == 65536) ? map : LLHeightFieldMoronize(map); |
1244 | map : | ||
1245 | LLHeightFieldMoronize(map); | ||
1246 | 1244 | ||
1247 | LayerDataPacket layerpack = TerrainCompressor.CreateLandPacket(heightmap, patches); | 1245 | LayerDataPacket layerpack = TerrainCompressor.CreateLandPacket(heightmap, patches); |
1248 | 1246 | ||