a zero direction vector in llEdgeOfWorld() should return TRUE not FALSE, (SL wiki)

LSLKeyTest
UbitUmarov 2016-07-28 21:37:16 +01:00
parent 16a7232f55
commit c692664f3d
1 changed files with 2 additions and 1 deletions

View File

@ -6404,7 +6404,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
{
// Direction vector is 0,0 so return
// false since we're staying in the sim
return 0;
// no SL says true
return 1;
}
else
{