diff options
author | MW | 2007-06-21 16:13:06 +0000 |
---|---|---|
committer | MW | 2007-06-21 16:13:06 +0000 |
commit | 596b3690fc59ce90efb5132d5c35a46dbd91c7d7 (patch) | |
tree | 6cb78288a9e174454ce2fbfc73f5b13076d05da6 /OpenSim/OpenSim.Region/Scenes/Entity.cs | |
parent | * Attempted fix for Mono bug. (diff) | |
download | opensim-SC-596b3690fc59ce90efb5132d5c35a46dbd91c7d7.zip opensim-SC-596b3690fc59ce90efb5132d5c35a46dbd91c7d7.tar.gz opensim-SC-596b3690fc59ce90efb5132d5c35a46dbd91c7d7.tar.bz2 opensim-SC-596b3690fc59ce90efb5132d5c35a46dbd91c7d7.tar.xz |
Some refactoring.
Diffstat (limited to 'OpenSim/OpenSim.Region/Scenes/Entity.cs')
-rw-r--r-- | OpenSim/OpenSim.Region/Scenes/Entity.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/OpenSim.Region/Scenes/Entity.cs b/OpenSim/OpenSim.Region/Scenes/Entity.cs index bd9309b..f8754f5 100644 --- a/OpenSim/OpenSim.Region/Scenes/Entity.cs +++ b/OpenSim/OpenSim.Region/Scenes/Entity.cs | |||
@@ -156,11 +156,11 @@ namespace OpenSim.Region.Scenes | |||
156 | /// <summary> | 156 | /// <summary> |
157 | /// | 157 | /// |
158 | /// </summary> | 158 | /// </summary> |
159 | public virtual void addForces() | 159 | public virtual void updateMovement() |
160 | { | 160 | { |
161 | foreach (Entity child in children) | 161 | foreach (Entity child in children) |
162 | { | 162 | { |
163 | child.addForces(); | 163 | child.updateMovement(); |
164 | } | 164 | } |
165 | } | 165 | } |
166 | 166 | ||