From 7f10179129d4b5ac4ae5c05ff8598f569b8e6412 Mon Sep 17 00:00:00 2001 From: mingchen Date: Mon, 16 Jul 2007 01:25:16 +0000 Subject: *Fixed bug that incorrectly tabulated 'others' prims on a parcel *Added support for selected prims (does not yet support prims being sat on) *Added support for listing avatars with prims on parcel with their prim count --- OpenSim/Framework/General/Types/ParcelData.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Framework/General/Types/ParcelData.cs') diff --git a/OpenSim/Framework/General/Types/ParcelData.cs b/OpenSim/Framework/General/Types/ParcelData.cs index 80b9b64..17de655 100644 --- a/OpenSim/Framework/General/Types/ParcelData.cs +++ b/OpenSim/Framework/General/Types/ParcelData.cs @@ -49,6 +49,7 @@ namespace OpenSim.Framework.Types public int groupPrims = 0; public int otherPrims = 0; public int ownerPrims = 0; + public int selectedPrims = 0; public int simwidePrims = 0; public int simwideArea = 0; public int salePrice = 0; //Unemeplemented. Parcels price. @@ -90,6 +91,7 @@ namespace OpenSim.Framework.Types parcelData.groupPrims = this.groupPrims; parcelData.otherPrims = this.otherPrims; parcelData.ownerPrims = this.ownerPrims; + parcelData.selectedPrims = this.selectedPrims; parcelData.isGroupOwned = this.isGroupOwned; parcelData.localID = this.localID; parcelData.landingType = this.landingType; -- cgit v1.1