diff options
Diffstat (limited to 'OpenSim/Framework')
-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; |