diff options
author | Samuel Barney <samjbarney@gmail.com> | 2013-10-29 17:44:51 +0100 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2013-10-29 17:44:51 +0100 |
commit | e1a06153b2e93473af58e1d801998ff7f388dc6d (patch) | |
tree | 080e0f9744333fe7936bcda1da47757dfa9fb10f /source/MobSpawner.h | |
parent | Merge branch 'master' of https://github.com/SamJBarney/MCServer into MobSpawning (diff) | |
download | cuberite-e1a06153b2e93473af58e1d801998ff7f388dc6d.tar cuberite-e1a06153b2e93473af58e1d801998ff7f388dc6d.tar.gz cuberite-e1a06153b2e93473af58e1d801998ff7f388dc6d.tar.bz2 cuberite-e1a06153b2e93473af58e1d801998ff7f388dc6d.tar.lz cuberite-e1a06153b2e93473af58e1d801998ff7f388dc6d.tar.xz cuberite-e1a06153b2e93473af58e1d801998ff7f388dc6d.tar.zst cuberite-e1a06153b2e93473af58e1d801998ff7f388dc6d.zip |
Diffstat (limited to '')
-rw-r--r-- | source/MobSpawner.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/MobSpawner.h b/source/MobSpawner.h index 3b9ede7c6..22adb00f4 100644 --- a/source/MobSpawner.h +++ b/source/MobSpawner.h @@ -39,7 +39,7 @@ public : // if this is the first of a Pack : determine the type of monster // BlockType & BlockMeta are used to decide what kind of Mob can Spawn here // MaxPackSize is set to the maximal size for a pack this type of mob - cMonster * TryToSpawnHere(const cChunk * a_Chunk, int A_RelX, int a_RelY, int a_RelZ, EMCSBiome a_Biome, int a_TimeOfDay, int& a_MaxPackSize); + cMonster * TryToSpawnHere(const cChunk * a_Chunk, int A_RelX, int a_RelY, int a_RelZ, EMCSBiome a_Biome, int& a_MaxPackSize); // mark the beginning of a new Pack // all mobs of the same Pack are the same type @@ -53,7 +53,7 @@ public : protected : // return true if specified type of mob can spawn on specified block - bool CanSpawnHere(const cChunk * a_Chunk, int a_RelX, int a_RelY, int a_RelZ, cMonster::eType a_MobType, int a_TimeOfDay, EMCSBiome a_Biome); + bool CanSpawnHere(const cChunk * a_Chunk, int a_RelX, int a_RelY, int a_RelZ, cMonster::eType a_MobType, EMCSBiome a_Biome); // return a random type that can spawn on specified biome. // returns E_ENTITY_TYPE_DONOTUSE if none is possible |