diff options
author | lbsa71 | 2007-09-21 05:23:17 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-21 05:23:17 +0000 |
commit | 5fab795bf0fd3fe794e4635fc28b295963cfbb9e (patch) | |
tree | f2e344108680b593b53d00b5e183f1641e20c1ed /OpenSim/Region/Environment/Scenes/ScenePresence.cs | |
parent | * Removed unused RegenerateTerrain functions (diff) | |
download | opensim-SC_OLD-5fab795bf0fd3fe794e4635fc28b295963cfbb9e.zip opensim-SC_OLD-5fab795bf0fd3fe794e4635fc28b295963cfbb9e.tar.gz opensim-SC_OLD-5fab795bf0fd3fe794e4635fc28b295963cfbb9e.tar.bz2 opensim-SC_OLD-5fab795bf0fd3fe794e4635fc28b295963cfbb9e.tar.xz |
* Continued work on Region layer
* Added Close() to ScenePresence to remove and destroy PhysicsActor
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 9b5aa99..cee93b2 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -627,7 +627,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
627 | m_controllingClient.SendCoarseLocationUpdate(CoarseLocations); | 627 | m_controllingClient.SendCoarseLocationUpdate(CoarseLocations); |
628 | } | 628 | } |
629 | 629 | ||
630 | public void CoarseLocationChange(ScenePresence avatar) | 630 | public void CoarseLocationChange() |
631 | { | 631 | { |
632 | newCoarseLocations = true; | 632 | newCoarseLocations = true; |
633 | } | 633 | } |
@@ -638,7 +638,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
638 | { | 638 | { |
639 | if (presence != this) | 639 | if (presence != this) |
640 | { | 640 | { |
641 | presence.CoarseLocationChange(this); | 641 | presence.CoarseLocationChange(); |
642 | } | 642 | } |
643 | }); | 643 | }); |
644 | } | 644 | } |