diff options
author | UbitUmarov | 2018-05-04 23:00:34 +0100 |
---|---|---|
committer | UbitUmarov | 2018-05-04 23:00:34 +0100 |
commit | 24df1086fa9cb2eb565935680522f532b0c82789 (patch) | |
tree | d9fbc4f75b43cfb989883855caa56abc19e14383 /OpenSim | |
parent | mantis 8321: avoid null reference potencial caused by outdated LMs for example (diff) | |
download | opensim-SC_OLD-24df1086fa9cb2eb565935680522f532b0c82789.zip opensim-SC_OLD-24df1086fa9cb2eb565935680522f532b0c82789.tar.gz opensim-SC_OLD-24df1086fa9cb2eb565935680522f532b0c82789.tar.bz2 opensim-SC_OLD-24df1086fa9cb2eb565935680522f532b0c82789.tar.xz |
fix ubOde terrain copy at north and east borders0.9.0.1
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/PhysicsModules/ubOde/ODEScene.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/PhysicsModules/ubOde/ODEScene.cs b/OpenSim/Region/PhysicsModules/ubOde/ODEScene.cs index 004ee7f..0b51820 100644 --- a/OpenSim/Region/PhysicsModules/ubOde/ODEScene.cs +++ b/OpenSim/Region/PhysicsModules/ubOde/ODEScene.cs | |||
@@ -2361,8 +2361,8 @@ namespace OpenSim.Region.PhysicsModule.ubOde | |||
2361 | float val; | 2361 | float val; |
2362 | 2362 | ||
2363 | 2363 | ||
2364 | uint maxXX = regionsizeX - 1; | 2364 | uint maxXX = regionsizeX + 1; |
2365 | uint maxYY = regionsizeY - 1; | 2365 | uint maxYY = regionsizeY + 1; |
2366 | // adding one margin all around so things don't fall in edges | 2366 | // adding one margin all around so things don't fall in edges |
2367 | 2367 | ||
2368 | uint xx; | 2368 | uint xx; |