aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleApp/Program.cs
diff options
context:
space:
mode:
authorlbsa712007-07-14 14:13:05 +0000
committerlbsa712007-07-14 14:13:05 +0000
commit1a92dc907316b16e9664cc718a06a4203d9244df (patch)
tree34828f67d1afbf536956003e103ea604810bf289 /OpenSim/Region/Examples/SimpleApp/Program.cs
parentAdded AddPreCompiledScript method to ScriptManager. (diff)
downloadopensim-SC_OLD-1a92dc907316b16e9664cc718a06a4203d9244df.zip
opensim-SC_OLD-1a92dc907316b16e9664cc718a06a4203d9244df.tar.gz
opensim-SC_OLD-1a92dc907316b16e9664cc718a06a4203d9244df.tar.bz2
opensim-SC_OLD-1a92dc907316b16e9664cc718a06a4203d9244df.tar.xz
* Apparently, we need to tell ParcelManager that there is no parcels.
* Cleaning lady cleaning build ignores (No, MW, I don't mind, anything for you)
Diffstat (limited to 'OpenSim/Region/Examples/SimpleApp/Program.cs')
-rw-r--r--OpenSim/Region/Examples/SimpleApp/Program.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/Program.cs b/OpenSim/Region/Examples/SimpleApp/Program.cs
index 3723c3d..42036eb 100644
--- a/OpenSim/Region/Examples/SimpleApp/Program.cs
+++ b/OpenSim/Region/Examples/SimpleApp/Program.cs
@@ -60,7 +60,10 @@ namespace SimpleApp
60 60
61 world = new MyWorld(packetServer.ClientManager, regionInfo, m_circuitManager, communicationsManager, assetCache, httpServer); 61 world = new MyWorld(packetServer.ClientManager, regionInfo, m_circuitManager, communicationsManager, assetCache, httpServer);
62 world.PhysScene = physManager.GetPhysicsScene("basicphysics"); //PhysicsScene.Null; 62 world.PhysScene = physManager.GetPhysicsScene("basicphysics"); //PhysicsScene.Null;
63
63 world.LoadWorldMap(); 64 world.LoadWorldMap();
65 world.ParcelManager.NoParcelDataFromStorage();
66
64 udpServer.LocalWorld = world; 67 udpServer.LocalWorld = world;
65 68
66 httpServer.Start(); 69 httpServer.Start();