summaryrefslogtreecommitdiffstats
path: root/src/Mobs/PassiveMonster.cpp
diff options
context:
space:
mode:
authortonibm19 <tonibm19@gmail.com>2014-01-29 19:15:26 +0100
committertonibm19 <tonibm19@gmail.com>2014-01-29 19:15:26 +0100
commit1c1832b6ce08de71e6a46187420d91eacb18d16e (patch)
tree19e8f8dc0cd0fb0dff42e041d6ebbda8f99caf9b /src/Mobs/PassiveMonster.cpp
parentFixed sheep (diff)
downloadcuberite-1c1832b6ce08de71e6a46187420d91eacb18d16e.tar
cuberite-1c1832b6ce08de71e6a46187420d91eacb18d16e.tar.gz
cuberite-1c1832b6ce08de71e6a46187420d91eacb18d16e.tar.bz2
cuberite-1c1832b6ce08de71e6a46187420d91eacb18d16e.tar.lz
cuberite-1c1832b6ce08de71e6a46187420d91eacb18d16e.tar.xz
cuberite-1c1832b6ce08de71e6a46187420d91eacb18d16e.tar.zst
cuberite-1c1832b6ce08de71e6a46187420d91eacb18d16e.zip
Diffstat (limited to 'src/Mobs/PassiveMonster.cpp')
-rw-r--r--src/Mobs/PassiveMonster.cpp16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/Mobs/PassiveMonster.cpp b/src/Mobs/PassiveMonster.cpp
index d774d3170..903761a95 100644
--- a/src/Mobs/PassiveMonster.cpp
+++ b/src/Mobs/PassiveMonster.cpp
@@ -3,7 +3,7 @@
#include "PassiveMonster.h"
#include "../World.h"
-
+#include "../Entities/Player.h"
@@ -39,6 +39,20 @@ void cPassiveMonster::Tick(float a_Dt, cChunk & a_Chunk)
{
CheckEventLostPlayer();
}
+ cItem FollowedItem = GetFollowedItem();
+ if (FollowedItem.IsEmpty())
+ {
+ return;
+ }
+ cPlayer * a_Closest_Player = m_World->FindClosestPlayer(GetPosition(), (float)m_SightDistance);
+ if (a_Closest_Player != NULL)
+ {
+ if (a_Closest_Player->GetEquippedItem().m_ItemType == FollowedItem.m_ItemType)
+ {
+ Vector3d PlayerPos = a_Closest_Player->GetPosition();
+ MoveToPosition(PlayerPos);
+ }
+ }
}