From c535f3947dbcfb78dcac8045c7452f34f8dd79eb Mon Sep 17 00:00:00 2001 From: mingchen Date: Mon, 5 May 2008 17:44:40 +0000 Subject: *Standardized the Land module by removing all references to libsecondlife.packets --- OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs') diff --git a/OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs b/OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs index 9ac3cc3..4454c38 100644 --- a/OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs +++ b/OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs @@ -672,11 +672,11 @@ namespace OpenSim.Region.Environment.Modules.World.Land sendParcelOverlay(remote_client); } - public void handleParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client) + public void handleParcelPropertiesUpdateRequest(LandUpdateArgs args, int localID, IClientAPI remote_client) { - if (landList.ContainsKey(packet.ParcelData.LocalID)) + if (landList.ContainsKey(localID)) { - landList[packet.ParcelData.LocalID].updateLandProperties(packet, remote_client); + landList[localID].updateLandProperties(args, remote_client); } } -- cgit v1.1