diff options
author | lbsa71 | 2007-07-02 08:03:11 +0000 |
---|---|---|
committer | lbsa71 | 2007-07-02 08:03:11 +0000 |
commit | 686f6a83319eaccd27f426eda82c020246566963 (patch) | |
tree | 1a2f4d75316282d4d36de11789af7d0e91950254 /OpenSim/Region/Physics/Manager/PhysicsManager.cs | |
parent | * Applied Weathros/tedd's IP v6 patch (diff) | |
download | opensim-SC-686f6a83319eaccd27f426eda82c020246566963.zip opensim-SC-686f6a83319eaccd27f426eda82c020246566963.tar.gz opensim-SC-686f6a83319eaccd27f426eda82c020246566963.tar.bz2 opensim-SC-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.cs | 2 |
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)) |