aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/PhysicsScene.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/Manager/PhysicsScene.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsScene.cs b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
index 5f08898..996aed6 100644
--- a/OpenSim/Region/Physics/Manager/PhysicsScene.cs
+++ b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
@@ -60,7 +60,7 @@ namespace OpenSim.Region.Physics.Manager
60 60
61 public abstract void Initialise(IMesher meshmerizer); 61 public abstract void Initialise(IMesher meshmerizer);
62 62
63 public abstract PhysicsActor AddAvatar(string avName, PhysicsVector position); 63 public abstract PhysicsActor AddAvatar(string avName, PhysicsVector position, PhysicsVector size);
64 64
65 public abstract void RemoveAvatar(PhysicsActor actor); 65 public abstract void RemoveAvatar(PhysicsActor actor);
66 66
@@ -95,7 +95,7 @@ namespace OpenSim.Region.Physics.Manager
95 // Does nothing right now 95 // Does nothing right now
96 } 96 }
97 97
98 public override PhysicsActor AddAvatar(string avName, PhysicsVector position) 98 public override PhysicsActor AddAvatar(string avName, PhysicsVector position, PhysicsVector size)
99 { 99 {
100 m_log.InfoFormat("[PHYSICS]: NullPhysicsScene : AddAvatar({0})", position); 100 m_log.InfoFormat("[PHYSICS]: NullPhysicsScene : AddAvatar({0})", position);
101 return PhysicsActor.Null; 101 return PhysicsActor.Null;