diff options
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 572412a..fea288e 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -1564,12 +1564,13 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1564 | m_parentScene = pScene; | 1564 | m_parentScene = pScene; |
1565 | 1565 | ||
1566 | } | 1566 | } |
1567 | // Recovered for use by fly height. Kitto Flora | 1567 | |
1568 | // Recovered for use by fly height. Kitto Flora | ||
1568 | public float GetTerrainHeightAtXY(float x, float y) | 1569 | public float GetTerrainHeightAtXY(float x, float y) |
1569 | { | 1570 | { |
1570 | 1571 | ||
1571 | int offsetX = ((int) (x/256)) * 256; | 1572 | int offsetX = ((int)(x / (int)Constants.RegionSize)) * (int)Constants.RegionSize; |
1572 | int offsetY = ((int) (y/256)) * 256; | 1573 | int offsetY = ((int)(y / (int)Constants.RegionSize)) * (int)Constants.RegionSize; |
1573 | 1574 | ||
1574 | IntPtr heightFieldGeom = IntPtr.Zero; | 1575 | IntPtr heightFieldGeom = IntPtr.Zero; |
1575 | 1576 | ||