diff options
author | mingchen | 2007-12-19 04:28:54 +0000 |
---|---|---|
committer | mingchen | 2007-12-19 04:28:54 +0000 |
commit | bd16dddce5a23e67d9ead896f770a50168e46ef4 (patch) | |
tree | 8dfa26923eb1c34d8620b72a0f2de8b1d88718cd /OpenSim/Region/Environment/Scenes/ScenePresence.cs | |
parent | Thanks to CharlieO for: (diff) | |
download | opensim-SC_OLD-bd16dddce5a23e67d9ead896f770a50168e46ef4.zip opensim-SC_OLD-bd16dddce5a23e67d9ead896f770a50168e46ef4.tar.gz opensim-SC_OLD-bd16dddce5a23e67d9ead896f770a50168e46ef4.tar.bz2 opensim-SC_OLD-bd16dddce5a23e67d9ead896f770a50168e46ef4.tar.xz |
*Added Ban Lines around parcels for banned avatars, but there is no actual blocking done yet.
*Made the OnSignificantClientMovement distance from .02 to .45 to make it easier on the server.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 86ff65e..91b6463 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -1181,7 +1181,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1181 | /// </summary> | 1181 | /// </summary> |
1182 | protected void CheckForSignificantMovement() | 1182 | protected void CheckForSignificantMovement() |
1183 | { | 1183 | { |
1184 | if (Util.GetDistanceTo(AbsolutePosition, posLastSignificantMove) > 0.02) | 1184 | if (Util.GetDistanceTo(AbsolutePosition, posLastSignificantMove) > 0.5) |
1185 | { | 1185 | { |
1186 | posLastSignificantMove = AbsolutePosition; | 1186 | posLastSignificantMove = AbsolutePosition; |
1187 | if (OnSignificantClientMovement != null) | 1187 | if (OnSignificantClientMovement != null) |