diff options
author | Charles Krinke | 2008-03-02 22:28:48 +0000 |
---|---|---|
committer | Charles Krinke | 2008-03-02 22:28:48 +0000 |
commit | 7794fc3766a71f6c708b53674064f69279434d1e (patch) | |
tree | 0a0f8ec8f81f2afa68dfaaa8450c08f0b203d77c /OpenSim/Region/Environment/Scenes/ScenePresence.cs | |
parent | Thank you kindly, Ahzzmandius for adding (diff) | |
download | opensim-SC-7794fc3766a71f6c708b53674064f69279434d1e.zip opensim-SC-7794fc3766a71f6c708b53674064f69279434d1e.tar.gz opensim-SC-7794fc3766a71f6c708b53674064f69279434d1e.tar.bz2 opensim-SC-7794fc3766a71f6c708b53674064f69279434d1e.tar.xz |
Change handler001 through handler009 to more
appropriate names consisten with their use.
All done with all 94 handlers from handler001
through handler094. Hopefully we can move
forward without numbered handlers.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index ef23432..2c201ba 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -116,7 +116,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
116 | private readonly List<ulong> m_knownChildRegions = new List<ulong>(); | 116 | private readonly List<ulong> m_knownChildRegions = new List<ulong>(); |
117 | //neighbouring regions we have enabled a child agent in | 117 | //neighbouring regions we have enabled a child agent in |
118 | 118 | ||
119 | private SignificantClientMovement handler001 = null; //OnSignificantClientMovement; | 119 | private SignificantClientMovement handlerSignificantClientMovement = null; //OnSignificantClientMovement; |
120 | 120 | ||
121 | 121 | ||
122 | /// <summary> | 122 | /// <summary> |
@@ -1484,10 +1484,10 @@ namespace OpenSim.Region.Environment.Scenes | |||
1484 | if (Util.GetDistanceTo(AbsolutePosition, posLastSignificantMove) > 0.5) | 1484 | if (Util.GetDistanceTo(AbsolutePosition, posLastSignificantMove) > 0.5) |
1485 | { | 1485 | { |
1486 | posLastSignificantMove = AbsolutePosition; | 1486 | posLastSignificantMove = AbsolutePosition; |
1487 | handler001 = OnSignificantClientMovement; | 1487 | handlerSignificantClientMovement = OnSignificantClientMovement; |
1488 | if (handler001 != null) | 1488 | if (handlerSignificantClientMovement != null) |
1489 | { | 1489 | { |
1490 | handler001(m_controllingClient); | 1490 | handlerSignificantClientMovement(m_controllingClient); |
1491 | m_scene.NotifyMyCoarseLocationChange(); | 1491 | m_scene.NotifyMyCoarseLocationChange(); |
1492 | } | 1492 | } |
1493 | } | 1493 | } |