diff options
Diffstat (limited to 'OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs')
-rw-r--r-- | OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs b/OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs index d4f4948..82969d9 100644 --- a/OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs +++ b/OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs | |||
@@ -817,7 +817,7 @@ namespace OpenSim.Region.Terrain | |||
817 | { | 817 | { |
818 | for (x = 0; x < h; x++) | 818 | for (x = 0; x < h; x++) |
819 | { | 819 | { |
820 | heightmap.map[x, y] = bs.ReadDouble(); | 820 | heightmap.Set(x, y, (double) bs.ReadSingle()); |
821 | } | 821 | } |
822 | } | 822 | } |
823 | 823 | ||
@@ -842,7 +842,7 @@ namespace OpenSim.Region.Terrain | |||
842 | { | 842 | { |
843 | for (x = 0; x < w; x++) | 843 | for (x = 0; x < w; x++) |
844 | { | 844 | { |
845 | heightmap.map[x, y] = (double) bs.ReadSingle(); | 845 | heightmap.Set(x, y, (double) bs.ReadSingle()); |
846 | } | 846 | } |
847 | } | 847 | } |
848 | 848 | ||
@@ -954,7 +954,7 @@ namespace OpenSim.Region.Terrain | |||
954 | { | 954 | { |
955 | for (x = 0; x < w; x++) | 955 | for (x = 0; x < w; x++) |
956 | { | 956 | { |
957 | heightmap.map[x, y] = (double) bs.ReadByte()*((double) bs.ReadByte()/127.0); | 957 | heightmap.Set(x, y, (double) bs.ReadByte()*((double) bs.ReadByte()/127.0)); |
958 | bs.ReadBytes(11); // Advance the stream to next bytes. | 958 | bs.ReadBytes(11); // Advance the stream to next bytes. |
959 | } | 959 | } |
960 | } | 960 | } |