diff options
author | mingchen | 2007-07-14 15:11:36 +0000 |
---|---|---|
committer | mingchen | 2007-07-14 15:11:36 +0000 |
commit | 423d03eaefcae1bcaff8e4d16da014d350c91c42 (patch) | |
tree | 1caf9a940dc856be765b7b000d4360d954b6741a /OpenSim/Framework/General | |
parent | Set up parcel manager and the master avatar in SimpleApp. (diff) | |
download | opensim-SC_OLD-423d03eaefcae1bcaff8e4d16da014d350c91c42.zip opensim-SC_OLD-423d03eaefcae1bcaff8e4d16da014d350c91c42.tar.gz opensim-SC_OLD-423d03eaefcae1bcaff8e4d16da014d350c91c42.tar.bz2 opensim-SC_OLD-423d03eaefcae1bcaff8e4d16da014d350c91c42.tar.xz |
*Added support for prim counting on parcels
**No restrictions yet in place, or total prim count
Diffstat (limited to 'OpenSim/Framework/General')
-rw-r--r-- | OpenSim/Framework/General/Types/ParcelData.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Types/ParcelData.cs b/OpenSim/Framework/General/Types/ParcelData.cs index ac34a26..2d332f5 100644 --- a/OpenSim/Framework/General/Types/ParcelData.cs +++ b/OpenSim/Framework/General/Types/ParcelData.cs | |||
@@ -47,6 +47,8 @@ namespace OpenSim.Framework.Types | |||
47 | public int claimPrice = 0; //Unemplemented | 47 | public int claimPrice = 0; //Unemplemented |
48 | public LLUUID groupID = new LLUUID(); //Unemplemented | 48 | public LLUUID groupID = new LLUUID(); //Unemplemented |
49 | public int groupPrims = 0; //Unemplemented | 49 | public int groupPrims = 0; //Unemplemented |
50 | public int otherPrims = 0; //Unemplemented | ||
51 | public int ownerPrims = 0; //Unemplemented | ||
50 | public int salePrice = 0; //Unemeplemented. Parcels price. | 52 | public int salePrice = 0; //Unemeplemented. Parcels price. |
51 | public Parcel.ParcelStatus parcelStatus = Parcel.ParcelStatus.Leased; | 53 | public Parcel.ParcelStatus parcelStatus = Parcel.ParcelStatus.Leased; |
52 | public uint parcelFlags = (uint)Parcel.ParcelFlags.AllowFly | (uint)Parcel.ParcelFlags.AllowLandmark | (uint)Parcel.ParcelFlags.AllowAllObjectEntry | (uint)Parcel.ParcelFlags.AllowDeedToGroup | (uint)Parcel.ParcelFlags.AllowTerraform | (uint)Parcel.ParcelFlags.CreateObjects | (uint)Parcel.ParcelFlags.AllowOtherScripts; | 54 | public uint parcelFlags = (uint)Parcel.ParcelFlags.AllowFly | (uint)Parcel.ParcelFlags.AllowLandmark | (uint)Parcel.ParcelFlags.AllowAllObjectEntry | (uint)Parcel.ParcelFlags.AllowDeedToGroup | (uint)Parcel.ParcelFlags.AllowTerraform | (uint)Parcel.ParcelFlags.CreateObjects | (uint)Parcel.ParcelFlags.AllowOtherScripts; |
@@ -84,6 +86,8 @@ namespace OpenSim.Framework.Types | |||
84 | parcelData.globalID = this.globalID; | 86 | parcelData.globalID = this.globalID; |
85 | parcelData.groupID = this.groupID; | 87 | parcelData.groupID = this.groupID; |
86 | parcelData.groupPrims = this.groupPrims; | 88 | parcelData.groupPrims = this.groupPrims; |
89 | parcelData.otherPrims = this.otherPrims; | ||
90 | parcelData.ownerPrims = this.ownerPrims; | ||
87 | parcelData.isGroupOwned = this.isGroupOwned; | 91 | parcelData.isGroupOwned = this.isGroupOwned; |
88 | parcelData.localID = this.localID; | 92 | parcelData.localID = this.localID; |
89 | parcelData.landingType = this.landingType; | 93 | parcelData.landingType = this.landingType; |