diff options
author | Garmin Kawaguichi | 2012-01-29 21:39:30 +0100 |
---|---|---|
committer | nebadon | 2012-01-29 14:41:47 -0700 |
commit | 5e60afe5ed6368ef94a15907a6c2042923f7b5f1 (patch) | |
tree | aabe180a2bd440c525619d20c8fe7531f9da6718 /OpenSim/Region | |
parent | Fix:Get embedded objects in notecard http://opensimulator.org/mantis/view.php... (diff) | |
download | opensim-SC_OLD-5e60afe5ed6368ef94a15907a6c2042923f7b5f1.zip opensim-SC_OLD-5e60afe5ed6368ef94a15907a6c2042923f7b5f1.tar.gz opensim-SC_OLD-5e60afe5ed6368ef94a15907a6c2042923f7b5f1.tar.bz2 opensim-SC_OLD-5e60afe5ed6368ef94a15907a6c2042923f7b5f1.tar.xz |
Fix llEdgeOfWorld functionality - see mantis http://opensimulator.org/mantis/view.php?id=5865
Signed-off-by: nebadon <michael@osgrid.org>
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index fb5fd45..50fe218 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -5506,7 +5506,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5506 | 5506 | ||
5507 | foreach (GridRegion sri in neighbors) | 5507 | foreach (GridRegion sri in neighbors) |
5508 | { | 5508 | { |
5509 | if (sri.RegionLocX == neighborX && sri.RegionLocY == neighborY) | 5509 | if (sri.RegionCoordX == neighborX && sri.RegionCoordY == neighborY) |
5510 | return 0; | 5510 | return 0; |
5511 | } | 5511 | } |
5512 | 5512 | ||