mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 05:05:43 +08:00
* 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
This commit is contained in:
@@ -21,7 +21,7 @@ namespace OpenSim
|
||||
bool userAccounts = false;
|
||||
bool gridLocalAsset = false;
|
||||
bool useConfigFile = false;
|
||||
bool noverbose = false;
|
||||
bool silent = false;
|
||||
string configFile = "simconfig.xml";
|
||||
|
||||
for (int i = 0; i < args.Length; i++)
|
||||
@@ -60,7 +60,7 @@ namespace OpenSim
|
||||
}
|
||||
if (args[i] == "-noverbose")
|
||||
{
|
||||
noverbose = true;
|
||||
silent = true;
|
||||
}
|
||||
if (args[i] == "-config")
|
||||
{
|
||||
@@ -76,7 +76,7 @@ namespace OpenSim
|
||||
}
|
||||
}
|
||||
|
||||
OpenSimMain sim = new OpenSimMain(sandBoxMode, startLoginServer, physicsEngine, useConfigFile, noverbose, configFile);
|
||||
OpenSimMain sim = new OpenSimMain(sandBoxMode, startLoginServer, physicsEngine, useConfigFile, silent, configFile);
|
||||
// OpenSimRoot.Instance.Application = sim;
|
||||
sim.m_sandbox = sandBoxMode;
|
||||
sim.user_accounts = userAccounts;
|
||||
|
||||
Reference in New Issue
Block a user