Fix problem of hurricane speed winds. Thanks Vegaslon.

This commit is contained in:
Robert Adams
2014-02-22 15:04:28 -08:00
parent cddf1ec0dc
commit 0b213af675
2 changed files with 6 additions and 11 deletions

View File

@@ -192,7 +192,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
int wbits;
int[] patch = CompressPatch(patchData, header, 10, out wbits);
wbits = EncodePatchHeader(output, header, patch, (uint)pRegionSizeX, (uint)pRegionSizeY, wbits);
wbits = EncodePatchHeader(output, header, patch, Constants.RegionSize, Constants.RegionSize, wbits);
EncodePatch(output, patch, 0, wbits);
}