summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Ocelot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Ocelot.cpp')
-rw-r--r--src/Mobs/Ocelot.cpp23
1 files changed, 9 insertions, 14 deletions
diff --git a/src/Mobs/Ocelot.cpp b/src/Mobs/Ocelot.cpp
index 7ebe37d20..02af45a7d 100644
--- a/src/Mobs/Ocelot.cpp
+++ b/src/Mobs/Ocelot.cpp
@@ -11,6 +11,15 @@
+// TODO: Ocelots should have a chance of spawning with two kittens
+/*
+ if (!IsBaby() && GetRandomProvider().RandBool(1.0 / 7.0))
+ {
+ m_World->SpawnMob(GetPosX(), GetPosY(), GetPosZ(), m_MobType, true);
+ m_World->SpawnMob(GetPosX(), GetPosY(), GetPosZ(), m_MobType, true);
+ }
+*/
+
cOcelot::cOcelot(void) :
super("Ocelot", mtOcelot, "entity.cat.hurt", "entity.cat.death", 0.6, 0.8),
m_IsSitting(false),
@@ -185,20 +194,6 @@ void cOcelot::OnRightClicked(cPlayer & a_Player)
-void cOcelot::SpawnOn(cClientHandle & a_ClientHandle)
-{
- super::SpawnOn(a_ClientHandle);
- if (!IsBaby() && GetRandomProvider().RandBool(1.0 / 7.0))
- {
- m_World->SpawnMob(GetPosX(), GetPosY(), GetPosZ(), m_MobType, true);
- m_World->SpawnMob(GetPosX(), GetPosY(), GetPosZ(), m_MobType, true);
- }
-}
-
-
-
-
-
bool cOcelot::IsCatSittingOnBlock(cWorld * a_World, Vector3d a_BlockPosition)
{
return a_World->ForEachEntityInBox(