From b9af2fe393d92b8bd8b30025e0c66aa0d031f52b Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Tue, 24 Jul 2007 05:38:21 +0000 Subject: * SendLayerData overload including coords now uses patch number rather than coords directly. --- OpenSim/Region/ClientStack/ClientView.API.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/ClientStack/ClientView.API.cs') diff --git a/OpenSim/Region/ClientStack/ClientView.API.cs b/OpenSim/Region/ClientStack/ClientView.API.cs index 956f2b4..2f5c5c3 100644 --- a/OpenSim/Region/ClientStack/ClientView.API.cs +++ b/OpenSim/Region/ClientStack/ClientView.API.cs @@ -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; -- cgit v1.1