* SendLayerData overload including coords now uses patch number rather than coords directly.

This commit is contained in:
Adam Frisby
2007-07-24 05:38:21 +00:00
parent 402aa1b0d2
commit b9af2fe393
3 changed files with 32 additions and 28 deletions

View File

@@ -323,8 +323,8 @@ namespace OpenSim.Region.ClientStack
{
int[] patches = new int[1];
int patchx, patchy;
patchx = px / 16;
patchy = py / 16;
patchx = px;
patchy = py;
patches[0] = patchx + 0 + patchy * 16;