aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local/LocalUserServices.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Communications/Local/LocalUserServices.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs
index 3bc4301..61b8633 100644
--- a/OpenSim/Region/Communications/Local/LocalUserServices.cs
+++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs
@@ -1,4 +1,5 @@
1using System; 1using System;
2using libsecondlife;
2using OpenSim.Framework.Communications; 3using OpenSim.Framework.Communications;
3using OpenSim.Framework.Data; 4using OpenSim.Framework.Data;
4using OpenSim.Framework.Types; 5using OpenSim.Framework.Types;
@@ -48,10 +49,10 @@ namespace OpenSim.Region.Communications.Local
48 } 49 }
49 else 50 else
50 { 51 {
51 m_parent.InventoryService.CreateNewUserInventory(profile.UUID); 52 m_parent.InventoryService.CreateNewUserInventory(LLUUID.Zero, profile.UUID);
52 } 53 }
53 54
54 return profile; 55 return profile;
55 } 56 }
56 } 57 }
57} \ No newline at end of file 58}