diff --git a/OpenSim/Region/CoreModules/World/Land/LandObject.cs b/OpenSim/Region/CoreModules/World/Land/LandObject.cs index 939512fcc2..f5cb1d7687 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandObject.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandObject.cs @@ -163,7 +163,7 @@ namespace OpenSim.Region.CoreModules.World.Land { if (x >= 0 && y >= 0 && x < m_scene.RegionInfo.RegionSizeX && y < m_scene.RegionInfo.RegionSizeY) { - return (LandBitmap[x / landUnit, y / landUnit] == true); + return LandBitmap[x / landUnit, y / landUnit]; } else {