Fix code to check for no spawn points. Possibly a merge artefact?
parent
38b476d9d6
commit
6f3dcf58b8
|
@ -4046,6 +4046,8 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
{
|
||||
case "random":
|
||||
|
||||
if (spawnPoints.Length == 0)
|
||||
return;
|
||||
do
|
||||
{
|
||||
index = Util.RandomClass.Next(spawnPoints.Length - 1);
|
||||
|
@ -4057,8 +4059,8 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
// SpawnPoint sp = spawnPoints[index];
|
||||
|
||||
ILandObject land = m_scene.LandChannel.GetLandObject(spawnPosition.X, spawnPosition.Y);
|
||||
if (spawnPoints.Length == 0)
|
||||
return; if (land == null || land.IsEitherBannedOrRestricted(UUID))
|
||||
|
||||
if (land == null || land.IsEitherBannedOrRestricted(UUID))
|
||||
selected = false;
|
||||
else
|
||||
selected = true;
|
||||
|
|
Loading…
Reference in New Issue