diff options
author | Melanie Thielker | 2010-08-07 22:10:46 +0200 |
---|---|---|
committer | Melanie Thielker | 2010-08-07 22:10:46 +0200 |
commit | 7bac069976b31ecb39c2d667b51aaa555f8207e3 (patch) | |
tree | 858554510701413596f683f8eab87e664c604466 | |
parent | Fix the distance from which autopilot is negated when sitting on an unscripte... (diff) | |
download | opensim-SC_OLD-7bac069976b31ecb39c2d667b51aaa555f8207e3.zip opensim-SC_OLD-7bac069976b31ecb39c2d667b51aaa555f8207e3.tar.gz opensim-SC_OLD-7bac069976b31ecb39c2d667b51aaa555f8207e3.tar.bz2 opensim-SC_OLD-7bac069976b31ecb39c2d667b51aaa555f8207e3.tar.xz |
Mantis #229. Fix Global sim ccordinates
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index a711ebf..9c630ef 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -9145,8 +9145,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
9145 | return UUID.Zero.ToString(); | 9145 | return UUID.Zero.ToString(); |
9146 | } | 9146 | } |
9147 | reply = new LSL_Vector( | 9147 | reply = new LSL_Vector( |
9148 | info.RegionLocX / Constants.RegionSize, | 9148 | info.RegionLocX; |
9149 | info.RegionLocY / Constants.RegionSize, | 9149 | info.RegionLocY; |
9150 | 0).ToString(); | 9150 | 0).ToString(); |
9151 | break; | 9151 | break; |
9152 | case 6: // DATA_SIM_STATUS | 9152 | case 6: // DATA_SIM_STATUS |