mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 03:06:05 +08:00
Repair check for if in region position (I mean || is kinda like &&).
This commit is contained in:
@@ -2420,7 +2420,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
if (regionCombinerModule == null)
|
||||
{
|
||||
// Regular region. Just check for region size
|
||||
if (xx < RegionInfo.RegionSizeX || yy < RegionInfo.RegionSizeY )
|
||||
if (xx < RegionInfo.RegionSizeX && yy < RegionInfo.RegionSizeY )
|
||||
ret = true;
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user