aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Entity.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Entity.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Entity.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Entity.cs b/OpenSim/Region/Environment/Scenes/Entity.cs
index c697faa..084c9ab 100644
--- a/OpenSim/Region/Environment/Scenes/Entity.cs
+++ b/OpenSim/Region/Environment/Scenes/Entity.cs
@@ -83,12 +83,12 @@ namespace OpenSim.Region.Environment.Scenes
83 { 83 {
84 if (this._physActor != null) 84 if (this._physActor != null)
85 { 85 {
86 velocity.X = _physActor.Velocity.X; 86 m_velocity.X = _physActor.Velocity.X;
87 velocity.Y = _physActor.Velocity.Y; 87 m_velocity.Y = _physActor.Velocity.Y;
88 velocity.Z = _physActor.Velocity.Z; 88 m_velocity.Z = _physActor.Velocity.Z;
89 } 89 }
90 90
91 return velocity; 91 return m_velocity;
92 } 92 }
93 set 93 set
94 { 94 {
@@ -108,7 +108,7 @@ namespace OpenSim.Region.Environment.Scenes
108 } 108 }
109 } 109 }
110 110
111 velocity = value; 111 m_velocity = value;
112 } 112 }
113 } 113 }
114 } 114 }