aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/LandData.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/LandData.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Framework/LandData.cs b/OpenSim/Framework/LandData.cs
index 885545d..bb99b27 100644
--- a/OpenSim/Framework/LandData.cs
+++ b/OpenSim/Framework/LandData.cs
@@ -26,6 +26,7 @@
26* 26*
27*/ 27*/
28using System.Collections.Generic; 28using System.Collections.Generic;
29using System;
29using libsecondlife; 30using libsecondlife;
30 31
31namespace OpenSim.Framework 32namespace OpenSim.Framework
@@ -34,7 +35,7 @@ namespace OpenSim.Framework
34 { 35 {
35 public byte[] landBitmapByteArray = new byte[512]; 36 public byte[] landBitmapByteArray = new byte[512];
36 public string landName = "Your Parcel"; 37 public string landName = "Your Parcel";
37 public string landDesc = ""; 38 public string landDesc = String.Empty;
38 public LLUUID ownerID = LLUUID.Zero; 39 public LLUUID ownerID = LLUUID.Zero;
39 public bool isGroupOwned = false; 40 public bool isGroupOwned = false;
40 public LLVector3 AABBMin = new LLVector3(); 41 public LLVector3 AABBMin = new LLVector3();
@@ -67,8 +68,8 @@ namespace OpenSim.Framework
67 public int localID = 0; 68 public int localID = 0;
68 public LLUUID globalID = LLUUID.Zero; 69 public LLUUID globalID = LLUUID.Zero;
69 70
70 public string mediaURL = ""; 71 public string mediaURL = String.Empty;
71 public string musicURL = ""; 72 public string musicURL = String.Empty;
72 public float passHours = 0; 73 public float passHours = 0;
73 public int passPrice = 0; 74 public int passPrice = 0;
74 public LLUUID snapshotID = LLUUID.Zero; 75 public LLUUID snapshotID = LLUUID.Zero;