diff options
author | mingchen | 2008-01-04 14:14:15 +0000 |
---|---|---|
committer | mingchen | 2008-01-04 14:14:15 +0000 |
commit | 81b4c7be3e84b29e5fcc387f578afdc07b806048 (patch) | |
tree | 5e835924288eb49fb92d293133ee68ae728d7f60 /OpenSim/Region/Application | |
parent | * Fixed situation where sometimes your avatar tries to land and gets 'put' 80... (diff) | |
download | opensim-SC_OLD-81b4c7be3e84b29e5fcc387f578afdc07b806048.zip opensim-SC_OLD-81b4c7be3e84b29e5fcc387f578afdc07b806048.tar.gz opensim-SC_OLD-81b4c7be3e84b29e5fcc387f578afdc07b806048.tar.bz2 opensim-SC_OLD-81b4c7be3e84b29e5fcc387f578afdc07b806048.tar.xz |
*Added ability to skip any use of the console when configuring and assume default value. This is useful when the server is running by itself and a new region request is added without sufficient information
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSimMain.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index 6758808..0e8d71a 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs | |||
@@ -394,7 +394,7 @@ namespace OpenSim | |||
394 | 394 | ||
395 | private static void CreateDefaultRegionInfoXml(string fileName) | 395 | private static void CreateDefaultRegionInfoXml(string fileName) |
396 | { | 396 | { |
397 | new RegionInfo("DEFAULT REGION CONFIG", fileName); | 397 | new RegionInfo("DEFAULT REGION CONFIG", fileName,false); |
398 | } | 398 | } |
399 | 399 | ||
400 | protected override StorageManager CreateStorageManager(string connectionstring) | 400 | protected override StorageManager CreateStorageManager(string connectionstring) |
@@ -771,7 +771,7 @@ namespace OpenSim | |||
771 | break; | 771 | break; |
772 | 772 | ||
773 | case "create-region": | 773 | case "create-region": |
774 | CreateRegion(new RegionInfo(cmdparams[0], "Regions/" + cmdparams[1])); | 774 | CreateRegion(new RegionInfo(cmdparams[0], "Regions/" + cmdparams[1],false)); |
775 | break; | 775 | break; |
776 | 776 | ||
777 | case "remove-region": | 777 | case "remove-region": |