aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-01-29 14:43:45 +0000
committerJustin Clarke Casey2008-01-29 14:43:45 +0000
commit55dc0dc2670f0db384d7ff5bad3d810a08ffbd34 (patch)
tree7384716228c2e8e773ee6db7641c3f98c109a0c8 /OpenSim/Region/Application
parent* No more massive spires and massive pits when editing land using Select + to... (diff)
downloadopensim-SC_OLD-55dc0dc2670f0db384d7ff5bad3d810a08ffbd34.zip
opensim-SC_OLD-55dc0dc2670f0db384d7ff5bad3d810a08ffbd34.tar.gz
opensim-SC_OLD-55dc0dc2670f0db384d7ff5bad3d810a08ffbd34.tar.bz2
opensim-SC_OLD-55dc0dc2670f0db384d7ff5bad3d810a08ffbd34.tar.xz
* Patch from Ansi (IBM)
* Allows the creation of a user via the RemoteAdminPlugin. * Many thanks!
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSimMain.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs
index a620bd4..f0e60cf 100644
--- a/OpenSim/Region/Application/OpenSimMain.cs
+++ b/OpenSim/Region/Application/OpenSimMain.cs
@@ -436,6 +436,10 @@ namespace OpenSim
436 m_sceneManager.OnRestartSim += handleRestartRegion; 436 m_sceneManager.OnRestartSim += handleRestartRegion;
437 } 437 }
438 438
439 public LLUUID CreateUser(string tempfirstname, string templastname, string tempPasswd, uint regX, uint regY)
440 {
441 return m_commsManager.AddUser(tempfirstname,templastname,tempPasswd,regX,regY);
442 }
439 443
440 public UDPServer CreateRegion(RegionInfo regionInfo) 444 public UDPServer CreateRegion(RegionInfo regionInfo)
441 { 445 {
@@ -678,6 +682,7 @@ namespace OpenSim
678 m_log.Error(" alert [First] [Last] [Message] - send an alert to a user. Case sensitive."); 682 m_log.Error(" alert [First] [Last] [Message] - send an alert to a user. Case sensitive.");
679 m_log.Error(" alert general [Message] - send an alert to all users."); 683 m_log.Error(" alert general [Message] - send an alert to all users.");
680 m_log.Error("backup - trigger a simulator backup"); 684 m_log.Error("backup - trigger a simulator backup");
685 m_log.Error("create user - adds a new user");
681 m_log.Error("change-region [name] - sets the region that many of these commands affect."); 686 m_log.Error("change-region [name] - sets the region that many of these commands affect.");
682 m_log.Error("command-script [filename] - Execute command in a file."); 687 m_log.Error("command-script [filename] - Execute command in a file.");
683 m_log.Error("debug - debugging commands"); 688 m_log.Error("debug - debugging commands");