From aa59dfb1d2090b5c58683f1facc8223612c3a868 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 29 Jul 2008 18:01:12 +0000 Subject: * minor: route create user through underlying super class method rather than calling communications manager directly --- OpenSim/Region/Application/OpenSim.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/Application/OpenSim.cs') diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 71a941e..622573c 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -701,7 +701,7 @@ namespace OpenSim if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) { - m_commsManager.AddUser(firstName, lastName, password, regX, regY); + CreateUser(firstName, lastName, password, regX, regY); } else { -- cgit v1.1