aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/PhysicsManager.cs
diff options
context:
space:
mode:
authorlbsa712007-07-02 08:03:11 +0000
committerlbsa712007-07-02 08:03:11 +0000
commit686f6a83319eaccd27f426eda82c020246566963 (patch)
tree1a2f4d75316282d4d36de11789af7d0e91950254 /OpenSim/Region/Physics/Manager/PhysicsManager.cs
parent* Applied Weathros/tedd's IP v6 patch (diff)
downloadopensim-SC_OLD-686f6a83319eaccd27f426eda82c020246566963.zip
opensim-SC_OLD-686f6a83319eaccd27f426eda82c020246566963.tar.gz
opensim-SC_OLD-686f6a83319eaccd27f426eda82c020246566963.tar.bz2
opensim-SC_OLD-686f6a83319eaccd27f426eda82c020246566963.tar.xz
* Fixed Issue #161 by using PhysicsScene.Null instead of BasePhysicsScene
* Hid NullPhysicsScene for great justice * Fixed broken Grid build
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/Manager/PhysicsManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsManager.cs b/OpenSim/Region/Physics/Manager/PhysicsManager.cs
index efccb36..0e28522 100644
--- a/OpenSim/Region/Physics/Manager/PhysicsManager.cs
+++ b/OpenSim/Region/Physics/Manager/PhysicsManager.cs
@@ -51,7 +51,7 @@ namespace OpenSim.Physics.Manager
51 { 51 {
52 if (String.IsNullOrEmpty(engineName)) 52 if (String.IsNullOrEmpty(engineName))
53 { 53 {
54 return new NullPhysicsScene(); 54 return PhysicsScene.Null;
55 } 55 }
56 56
57 if(_plugins.ContainsKey(engineName)) 57 if(_plugins.ContainsKey(engineName))