aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/InventoryServer/InventoryManager.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2007-12-28 18:01:20 +0000
committerJustin Clarke Casey2007-12-28 18:01:20 +0000
commit7cf9a8d4f9e1ea1f1d741a1b045ce63e20aa3fde (patch)
treeb055b9cba53b1b5db0a60565e9d057502e9b1270 /OpenSim/Grid/InventoryServer/InventoryManager.cs
parent* Rezzing items from Inventory on top of other prim rezzes them 0.5 meters ab... (diff)
downloadopensim-SC_OLD-7cf9a8d4f9e1ea1f1d741a1b045ce63e20aa3fde.zip
opensim-SC_OLD-7cf9a8d4f9e1ea1f1d741a1b045ce63e20aa3fde.tar.gz
opensim-SC_OLD-7cf9a8d4f9e1ea1f1d741a1b045ce63e20aa3fde.tar.bz2
opensim-SC_OLD-7cf9a8d4f9e1ea1f1d741a1b045ce63e20aa3fde.tar.xz
Move inventory contents configuration files to bin/inventory folder
Diffstat (limited to 'OpenSim/Grid/InventoryServer/InventoryManager.cs')
-rw-r--r--OpenSim/Grid/InventoryServer/InventoryManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Grid/InventoryServer/InventoryManager.cs b/OpenSim/Grid/InventoryServer/InventoryManager.cs
index a003ce3..cea8f31 100644
--- a/OpenSim/Grid/InventoryServer/InventoryManager.cs
+++ b/OpenSim/Grid/InventoryServer/InventoryManager.cs
@@ -149,10 +149,10 @@ namespace OpenSim.Grid.InventoryServer
149 { 149 {
150 _manager = manager; 150 _manager = manager;
151 151
152 _inventory = loadInventoryFromXmlFile("Inventory_Library.xml"); 152 _inventory = loadInventoryFromXmlFile("inventory/Inventory_Library.xml");
153 if (fixupInventory(_inventory)) 153 if (fixupInventory(_inventory))
154 { 154 {
155 FileStream fs = new FileStream("Inventory_Library.xml", FileMode.Truncate, FileAccess.Write); 155 FileStream fs = new FileStream("inventory/Inventory_Library.xml", FileMode.Truncate, FileAccess.Write);
156 saveInventoryToStream(_inventory, fs); 156 saveInventoryToStream(_inventory, fs);
157 fs.Flush(); 157 fs.Flush();
158 fs.Close(); 158 fs.Close();
@@ -207,4 +207,4 @@ namespace OpenSim.Grid.InventoryServer
207 } 207 }
208 } 208 }
209 } 209 }
210} \ No newline at end of file 210}