diff options
author | MW | 2009-02-24 15:37:03 +0000 |
---|---|---|
committer | MW | 2009-02-24 15:37:03 +0000 |
commit | ea26bd415329fb3f030819c9cbaf210825cf5c34 (patch) | |
tree | c419cf51b14e33d56532298888c0bec3dfeeaaaa /OpenSim/Region | |
parent | Deleted the files from Messagingserver that are now in OpenSim.Grid.Framework (diff) | |
download | opensim-SC-ea26bd415329fb3f030819c9cbaf210825cf5c34.zip opensim-SC-ea26bd415329fb3f030819c9cbaf210825cf5c34.tar.gz opensim-SC-ea26bd415329fb3f030819c9cbaf210825cf5c34.tar.bz2 opensim-SC-ea26bd415329fb3f030819c9cbaf210825cf5c34.tar.xz |
First step in separating out the Userserver console command handling to a "module".
Added OpenSim.Grid.UserServer.Modules project/dll which now contains the components of the userserver. With the OpenSim.Grid.UserServer being the setup and initiate exe.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 3a4276f..a17d92f 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -403,7 +403,9 @@ namespace OpenSim | |||
403 | string regionFile = String.Format("{0}/{1}", regionsDir, cmd[3]); | 403 | string regionFile = String.Format("{0}/{1}", regionsDir, cmd[3]); |
404 | // Allow absolute and relative specifiers | 404 | // Allow absolute and relative specifiers |
405 | if (cmd[3].StartsWith("/") || cmd[3].StartsWith("\\") || cmd[3].StartsWith("..") || cmd[3].EndsWith(".xml")) | 405 | if (cmd[3].StartsWith("/") || cmd[3].StartsWith("\\") || cmd[3].StartsWith("..") || cmd[3].EndsWith(".xml")) |
406 | { | ||
406 | regionFile = cmd[3]; | 407 | regionFile = cmd[3]; |
408 | } | ||
407 | else | 409 | else |
408 | { | 410 | { |
409 | m_console.Error("Usage: create region <region name> <region_file.xml>"); | 411 | m_console.Error("Usage: create region <region name> <region_file.xml>"); |