diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/PhysicsModules/POS/POSScene.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/PhysicsModules/POS/POSScene.cs b/OpenSim/Region/PhysicsModules/POS/POSScene.cs index e6bcbf2..e62d876 100644 --- a/OpenSim/Region/PhysicsModules/POS/POSScene.cs +++ b/OpenSim/Region/PhysicsModules/POS/POSScene.cs | |||
@@ -54,6 +54,11 @@ namespace OpenSim.Region.PhysicsModule.POS | |||
54 | get { return "POS"; } | 54 | get { return "POS"; } |
55 | } | 55 | } |
56 | 56 | ||
57 | public string Version | ||
58 | { | ||
59 | get { return "1.0"; } | ||
60 | } | ||
61 | |||
57 | public Type ReplaceableInterface | 62 | public Type ReplaceableInterface |
58 | { | 63 | { |
59 | get { return null; } | 64 | get { return null; } |
@@ -83,6 +88,7 @@ namespace OpenSim.Region.PhysicsModule.POS | |||
83 | 88 | ||
84 | EngineType = Name; | 89 | EngineType = Name; |
85 | PhysicsSceneName = EngineType + "/" + scene.RegionInfo.RegionName; | 90 | PhysicsSceneName = EngineType + "/" + scene.RegionInfo.RegionName; |
91 | EngineName = Name + " " + Version; | ||
86 | 92 | ||
87 | scene.RegisterModuleInterface<PhysicsScene>(this); | 93 | scene.RegisterModuleInterface<PhysicsScene>(this); |
88 | base.Initialise(scene.PhysicsRequestAsset, | 94 | base.Initialise(scene.PhysicsRequestAsset, |