Merge pull request #1640 from p-mcgowan/mooshroomMobSpawnerRule
added spawning rule to mooshroom
This commit is contained in:
commit
4d74adaa67
@ -286,6 +286,19 @@ bool cMobSpawner::CanSpawnHere(cChunk * a_Chunk, int a_RelX, int a_RelY, int a_R
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case mtMooshroom:
|
||||||
|
{
|
||||||
|
return (
|
||||||
|
(TargetBlock == E_BLOCK_AIR) &&
|
||||||
|
(BlockAbove == E_BLOCK_AIR) &&
|
||||||
|
(BlockBelow == E_BLOCK_MYCELIUM) &&
|
||||||
|
(
|
||||||
|
(a_Biome == biMushroomShore) ||
|
||||||
|
(a_Biome == biMushroomIsland)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
LOGD("MG TODO: Write spawning rule for mob type %d", a_MobType);
|
LOGD("MG TODO: Write spawning rule for mob type %d", a_MobType);
|
||||||
|
Loading…
Reference in New Issue
Block a user