diff options
author | Robert Adams | 2014-02-22 15:04:28 -0800 |
---|---|---|
committer | Robert Adams | 2014-02-22 15:04:28 -0800 |
commit | 0b213af675d6859b4bdace98b249ea18e9ca32f2 (patch) | |
tree | 51169034c961e38baf56654b2c2c14440620ab8f /OpenSim/Region/Framework | |
parent | Added 2 new behaviors to pCampBot (diff) | |
download | opensim-SC-0b213af675d6859b4bdace98b249ea18e9ca32f2.zip opensim-SC-0b213af675d6859b4bdace98b249ea18e9ca32f2.tar.gz opensim-SC-0b213af675d6859b4bdace98b249ea18e9ca32f2.tar.bz2 opensim-SC-0b213af675d6859b4bdace98b249ea18e9ca32f2.tar.xz |
Fix problem of hurricane speed winds. Thanks Vegaslon.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/TerrainCompressor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/TerrainCompressor.cs b/OpenSim/Region/Framework/Scenes/TerrainCompressor.cs index bdb748a..b41691f 100644 --- a/OpenSim/Region/Framework/Scenes/TerrainCompressor.cs +++ b/OpenSim/Region/Framework/Scenes/TerrainCompressor.cs | |||
@@ -192,7 +192,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
192 | 192 | ||
193 | int wbits; | 193 | int wbits; |
194 | int[] patch = CompressPatch(patchData, header, 10, out wbits); | 194 | int[] patch = CompressPatch(patchData, header, 10, out wbits); |
195 | wbits = EncodePatchHeader(output, header, patch, (uint)pRegionSizeX, (uint)pRegionSizeY, wbits); | 195 | wbits = EncodePatchHeader(output, header, patch, Constants.RegionSize, Constants.RegionSize, wbits); |
196 | EncodePatch(output, patch, 0, wbits); | 196 | EncodePatch(output, patch, 0, wbits); |
197 | } | 197 | } |
198 | 198 | ||