diff options
author | Justin Clarke Casey | 2008-07-29 18:01:12 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-07-29 18:01:12 +0000 |
commit | aa59dfb1d2090b5c58683f1facc8223612c3a868 (patch) | |
tree | 1d4cd552d9ce4bf3e392b84ae60f5174fa5d43df /OpenSim/Region/Application/OpenSim.cs | |
parent | * refactor: move create user console command parsing down to OpenSim.cs from ... (diff) | |
download | opensim-SC_OLD-aa59dfb1d2090b5c58683f1facc8223612c3a868.zip opensim-SC_OLD-aa59dfb1d2090b5c58683f1facc8223612c3a868.tar.gz opensim-SC_OLD-aa59dfb1d2090b5c58683f1facc8223612c3a868.tar.bz2 opensim-SC_OLD-aa59dfb1d2090b5c58683f1facc8223612c3a868.tar.xz |
* minor: route create user through underlying super class method rather than calling communications manager directly
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
701 | 701 | ||
702 | if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) | 702 | if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) |
703 | { | 703 | { |
704 | m_commsManager.AddUser(firstName, lastName, password, regX, regY); | 704 | CreateUser(firstName, lastName, password, regX, regY); |
705 | } | 705 | } |
706 | else | 706 | else |
707 | { | 707 | { |