aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/LandData.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-11-24 10:36:54 +0000
committerAdam Frisby2007-11-24 10:36:54 +0000
commit0951f895ef07a784b094d5f8eb3825b65d5ad171 (patch)
tree8332a8ac3c7b0e2a3455ec30e1e4972f5747b469 /OpenSim/Framework/LandData.cs
parent* Added some bounds checks to the sendLandUpdate packet to deal with agents c... (diff)
downloadopensim-SC_OLD-0951f895ef07a784b094d5f8eb3825b65d5ad171.zip
opensim-SC_OLD-0951f895ef07a784b094d5f8eb3825b65d5ad171.tar.gz
opensim-SC_OLD-0951f895ef07a784b094d5f8eb3825b65d5ad171.tar.bz2
opensim-SC_OLD-0951f895ef07a784b094d5f8eb3825b65d5ad171.tar.xz
* Removed references to "new LLUUID()", replaced with LLUUID.Zero.
Diffstat (limited to 'OpenSim/Framework/LandData.cs')
-rw-r--r--OpenSim/Framework/LandData.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/LandData.cs b/OpenSim/Framework/LandData.cs
index ca948ef..a3f9196 100644
--- a/OpenSim/Framework/LandData.cs
+++ b/OpenSim/Framework/LandData.cs
@@ -34,17 +34,17 @@ namespace OpenSim.Framework
34 public byte[] landBitmapByteArray = new byte[512]; 34 public byte[] landBitmapByteArray = new byte[512];
35 public string landName = "Your Parcel"; 35 public string landName = "Your Parcel";
36 public string landDesc = ""; 36 public string landDesc = "";
37 public LLUUID ownerID = new LLUUID(); 37 public LLUUID ownerID = LLUUID.Zero;
38 public bool isGroupOwned = false; 38 public bool isGroupOwned = false;
39 public LLVector3 AABBMin = new LLVector3(); 39 public LLVector3 AABBMin = new LLVector3();
40 public LLVector3 AABBMax = new LLVector3(); 40 public LLVector3 AABBMax = new LLVector3();
41 public int area = 0; 41 public int area = 0;
42 public uint auctionID = 0; //Unemplemented. If set to 0, not being auctioned 42 public uint auctionID = 0; //Unemplemented. If set to 0, not being auctioned
43 public LLUUID authBuyerID = new LLUUID(); //Unemplemented. Authorized Buyer's UUID 43 public LLUUID authBuyerID = LLUUID.Zero; //Unemplemented. Authorized Buyer's UUID
44 public Parcel.ParcelCategory category = new Parcel.ParcelCategory(); //Unemplemented. Parcel's chosen category 44 public Parcel.ParcelCategory category = new Parcel.ParcelCategory(); //Unemplemented. Parcel's chosen category
45 public int claimDate = 0; //Unemplemented 45 public int claimDate = 0; //Unemplemented
46 public int claimPrice = 0; //Unemplemented 46 public int claimPrice = 0; //Unemplemented
47 public LLUUID groupID = new LLUUID(); //Unemplemented 47 public LLUUID groupID = LLUUID.Zero; //Unemplemented
48 public int groupPrims = 0; 48 public int groupPrims = 0;
49 public int otherPrims = 0; 49 public int otherPrims = 0;
50 public int ownerPrims = 0; 50 public int ownerPrims = 0;
@@ -64,7 +64,7 @@ namespace OpenSim.Framework
64 public byte mediaAutoScale = 0; 64 public byte mediaAutoScale = 0;
65 public LLUUID mediaID = LLUUID.Zero; 65 public LLUUID mediaID = LLUUID.Zero;
66 public int localID = 0; 66 public int localID = 0;
67 public LLUUID globalID = new LLUUID(); 67 public LLUUID globalID = LLUUID.Zero;
68 68
69 public string mediaURL = ""; 69 public string mediaURL = "";
70 public string musicURL = ""; 70 public string musicURL = "";