diff options
author | lbsa71 | 2007-05-16 17:12:17 +0000 |
---|---|---|
committer | lbsa71 | 2007-05-16 17:12:17 +0000 |
commit | 6056247ac3002808c95d7a1c6671c388920ec2ed (patch) | |
tree | cc9c6aa96868ba71dab8cee92f904b51315156c9 /OpenSim | |
parent | Yet more cleanup/refactoring (diff) | |
download | opensim-SC_OLD-6056247ac3002808c95d7a1c6671c388920ec2ed.zip opensim-SC_OLD-6056247ac3002808c95d7a1c6671c388920ec2ed.tar.gz opensim-SC_OLD-6056247ac3002808c95d7a1c6671c388920ec2ed.tar.bz2 opensim-SC_OLD-6056247ac3002808c95d7a1c6671c388920ec2ed.tar.xz |
* removed unused new-login.dat
* cleared up verbose/noverbose/disableOutput douple negation confusion in ConsoleBase
* 2d chat radius is now 3d chat sphere
* removed unused fast 2d radius calc
* added chat type 0xFF : broadcast (no sphere checking)
* OpenSimMain now exposes its LocalWorld
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Application.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Application.cs b/OpenSim/Application.cs index 4b475a1..240f6c5 100644 --- a/OpenSim/Application.cs +++ b/OpenSim/Application.cs | |||
@@ -21,7 +21,7 @@ namespace OpenSim | |||
21 | bool userAccounts = false; | 21 | bool userAccounts = false; |
22 | bool gridLocalAsset = false; | 22 | bool gridLocalAsset = false; |
23 | bool useConfigFile = false; | 23 | bool useConfigFile = false; |
24 | bool noverbose = false; | 24 | bool silent = false; |
25 | string configFile = "simconfig.xml"; | 25 | string configFile = "simconfig.xml"; |
26 | 26 | ||
27 | for (int i = 0; i < args.Length; i++) | 27 | for (int i = 0; i < args.Length; i++) |
@@ -60,7 +60,7 @@ namespace OpenSim | |||
60 | } | 60 | } |
61 | if (args[i] == "-noverbose") | 61 | if (args[i] == "-noverbose") |
62 | { | 62 | { |
63 | noverbose = true; | 63 | silent = true; |
64 | } | 64 | } |
65 | if (args[i] == "-config") | 65 | if (args[i] == "-config") |
66 | { | 66 | { |
@@ -76,7 +76,7 @@ namespace OpenSim | |||
76 | } | 76 | } |
77 | } | 77 | } |
78 | 78 | ||
79 | OpenSimMain sim = new OpenSimMain(sandBoxMode, startLoginServer, physicsEngine, useConfigFile, noverbose, configFile); | 79 | OpenSimMain sim = new OpenSimMain(sandBoxMode, startLoginServer, physicsEngine, useConfigFile, silent, configFile); |
80 | // OpenSimRoot.Instance.Application = sim; | 80 | // OpenSimRoot.Instance.Application = sim; |
81 | sim.m_sandbox = sandBoxMode; | 81 | sim.m_sandbox = sandBoxMode; |
82 | sim.user_accounts = userAccounts; | 82 | sim.user_accounts = userAccounts; |