aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AgentInventory.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/AgentInventory.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/AgentInventory.cs b/OpenSim/Framework/AgentInventory.cs
index 916cdf8..ef3ad16 100644
--- a/OpenSim/Framework/AgentInventory.cs
+++ b/OpenSim/Framework/AgentInventory.cs
@@ -25,6 +25,7 @@
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28using System;
28using System.Collections.Generic; 29using System.Collections.Generic;
29using libsecondlife; 30using libsecondlife;
30using libsecondlife.Packets; 31using libsecondlife.Packets;
@@ -230,7 +231,7 @@ namespace OpenSim.Framework
230 public LLUUID CreatorID; 231 public LLUUID CreatorID;
231 public sbyte InvType; 232 public sbyte InvType;
232 public sbyte Type; 233 public sbyte Type;
233 public string Name = System.String.Empty; 234 public string Name = String.Empty;
234 public string Description; 235 public string Description;
235 236
236 public InventoryItem() 237 public InventoryItem()
@@ -241,7 +242,7 @@ namespace OpenSim.Framework
241 public string ExportString() 242 public string ExportString()
242 { 243 {
243 string typ = "notecard"; 244 string typ = "notecard";
244 string result = System.String.Empty; 245 string result = String.Empty;
245 result += "\tinv_object\t0\n\t{\n"; 246 result += "\tinv_object\t0\n\t{\n";
246 result += "\t\tobj_id\t%s\n"; 247 result += "\t\tobj_id\t%s\n";
247 result += "\t\tparent_id\t" + ItemID.ToString() + "\n"; 248 result += "\t\tparent_id\t" + ItemID.ToString() + "\n";