aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/OdePlugin.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
index c4d249d..3817868 100644
--- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
+++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
@@ -702,13 +702,13 @@ namespace OpenSim.Region.Physics.OdePlugin
702 } 702 }
703 } 703 }
704 704
705 public override PhysicsActor AddAvatar(string avName, PhysicsVector position) 705 public override PhysicsActor AddAvatar(string avName, PhysicsVector position, PhysicsVector size)
706 { 706 {
707 PhysicsVector pos = new PhysicsVector(); 707 PhysicsVector pos = new PhysicsVector();
708 pos.X = position.X; 708 pos.X = position.X;
709 pos.Y = position.Y; 709 pos.Y = position.Y;
710 pos.Z = position.Z; 710 pos.Z = position.Z;
711 OdeCharacter newAv = new OdeCharacter(avName, this, pos, ode); 711 OdeCharacter newAv = new OdeCharacter(avName, this, pos, ode, size);
712 _characters.Add(newAv); 712 _characters.Add(newAv);
713 return newAv; 713 return newAv;
714 } 714 }