mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
test jenkins
This commit is contained in:
@@ -1441,17 +1441,17 @@ namespace OpenSim.Region.CoreModules.World.Permissions
|
||||
{
|
||||
DebugPermissionInformation(MethodInfo.GetCurrentMethod().Name);
|
||||
|
||||
if(sog == null || sog.IsDeleted)
|
||||
return false;
|
||||
|
||||
float newX = newPoint.X;
|
||||
float newY = newPoint.Y;
|
||||
|
||||
// allow outside region this mb needed for crossings
|
||||
// allow outside region this is needed for crossings
|
||||
if (newX < -1f || newX > (scene.RegionInfo.RegionSizeX + 1.0f) ||
|
||||
newY < -1f || newY > (scene.RegionInfo.RegionSizeY + 1.0f) )
|
||||
return true;
|
||||
|
||||
if(sog == null || sog.IsDeleted)
|
||||
return false;
|
||||
|
||||
if (m_bypassPermissions)
|
||||
return m_bypassPermissionsValue;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user