diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index bb74e22..43b3939 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | |||
@@ -258,10 +258,12 @@ namespace OpenSim.Region.Communications.OGS1 | |||
258 | public UserProfileData SetupMasterUser(LLUUID uuid) | 258 | public UserProfileData SetupMasterUser(LLUUID uuid) |
259 | { | 259 | { |
260 | UserProfileData data = GetUserProfile(uuid); | 260 | UserProfileData data = GetUserProfile(uuid); |
261 | |||
261 | if (data == null) | 262 | if (data == null) |
262 | { | 263 | { |
263 | throw new Exception("[OGS1 USER SERVICES]: Unknown master user UUID"); | 264 | throw new Exception("[OGS1 USER SERVICES]: Unknown master user " + uuid); |
264 | } | 265 | } |
266 | |||
265 | return data; | 267 | return data; |
266 | } | 268 | } |
267 | 269 | ||