1
0

Invalid light value is now 127

This commit is contained in:
Samuel Barney 2013-10-22 17:10:32 -06:00
parent 6e361f195f
commit d6d73a1754

View File

@ -544,7 +544,7 @@ void cChunk::SpawnMobs(cMobSpawner& a_MobSpawner)
NIBBLETYPE BlockLight = UnboundedRelGetBlockLight(Try_X, Try_Y, Try_Z); NIBBLETYPE BlockLight = UnboundedRelGetBlockLight(Try_X, Try_Y, Try_Z);
if (IsLightValid()) if (IsLightValid() && (SkyLight != 127) && (BlockLight != 127))
{ {
cEntity* newMob = a_MobSpawner.TryToSpawnHere(BlockType, BlockMeta, BlockType_below, BlockMeta_below, BlockType_above, BlockMeta_above, SkyLight, BlockLight, Biome, Try_Y, MaxNbOfSuccess); cEntity* newMob = a_MobSpawner.TryToSpawnHere(BlockType, BlockMeta, BlockType_below, BlockMeta_below, BlockType_above, BlockMeta_above, SkyLight, BlockLight, Biome, Try_Y, MaxNbOfSuccess);
if (newMob) if (newMob)
@ -1361,7 +1361,7 @@ NIBBLETYPE cChunk::UnboundedRelGetSkyLight(int a_RelX, int a_RelY, int a_RelZ)
if ((a_RelY < 0) || (a_RelY > cChunkDef::Height)) if ((a_RelY < 0) || (a_RelY > cChunkDef::Height))
{ {
LOGWARNING("UnboundedRelGetSkyLight(): requesting a block with a_RelY out of range: %d", a_RelY); LOGWARNING("UnboundedRelGetSkyLight(): requesting a block with a_RelY out of range: %d", a_RelY);
return -1; return 127;
} }
// Is it in this chunk? // Is it in this chunk?
@ -1369,7 +1369,7 @@ if ((a_RelY < 0) || (a_RelY > cChunkDef::Height))
{ {
if (!IsValid()) if (!IsValid())
{ {
return -1; return 127;
} }
return GetSkyLight(a_RelX, a_RelY, a_RelZ); return GetSkyLight(a_RelX, a_RelY, a_RelZ);
} }
@ -1409,7 +1409,7 @@ NIBBLETYPE cChunk::UnboundedRelGetBlockLight(int a_RelX, int a_RelY, int a_RelZ)
if ((a_RelY < 0) || (a_RelY > cChunkDef::Height)) if ((a_RelY < 0) || (a_RelY > cChunkDef::Height))
{ {
LOGWARNING("UnboundedRelGetBlockLight(): requesting a block with a_RelY out of range: %d", a_RelY); LOGWARNING("UnboundedRelGetBlockLight(): requesting a block with a_RelY out of range: %d", a_RelY);
return -1; return 127;
} }
// Is it in this chunk? // Is it in this chunk?
@ -1417,7 +1417,7 @@ if ((a_RelY < 0) || (a_RelY > cChunkDef::Height))
{ {
if (!IsValid()) if (!IsValid())
{ {
return -1; return 127;
} }
return GetBlockLight(a_RelX, a_RelY, a_RelZ); return GetBlockLight(a_RelX, a_RelY, a_RelZ);
} }