summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Wolf.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-11-13 22:38:34 +0100
committermadmaxoft <github@xoft.cz>2013-11-13 22:38:34 +0100
commita8cf6edab0e42e02525b21edfce21446fb55b4cc (patch)
treee1b2fa0dc8af48639da6e0830c68bc729092711b /source/Mobs/Wolf.h
parentUpdate items.ini (diff)
parentNow using a TickFollowPlayer function. (diff)
downloadcuberite-a8cf6edab0e42e02525b21edfce21446fb55b4cc.tar
cuberite-a8cf6edab0e42e02525b21edfce21446fb55b4cc.tar.gz
cuberite-a8cf6edab0e42e02525b21edfce21446fb55b4cc.tar.bz2
cuberite-a8cf6edab0e42e02525b21edfce21446fb55b4cc.tar.lz
cuberite-a8cf6edab0e42e02525b21edfce21446fb55b4cc.tar.xz
cuberite-a8cf6edab0e42e02525b21edfce21446fb55b4cc.tar.zst
cuberite-a8cf6edab0e42e02525b21edfce21446fb55b4cc.zip
Diffstat (limited to 'source/Mobs/Wolf.h')
-rw-r--r--source/Mobs/Wolf.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/Mobs/Wolf.h b/source/Mobs/Wolf.h
index d51d4e78a..040e2cf7a 100644
--- a/source/Mobs/Wolf.h
+++ b/source/Mobs/Wolf.h
@@ -21,13 +21,14 @@ public:
virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
virtual void OnRightClicked(cPlayer & a_Player) override;
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
+ virtual void TickFollowPlayer();
// Get functions
bool IsSitting (void) const { return m_IsSitting; }
bool IsTame (void) const { return m_IsTame; }
bool IsBegging (void) const { return m_IsBegging; }
bool IsAngry (void) const { return m_IsAngry; }
- AString GetOwner (void) const { return m_Owner; }
+ AString GetOwner (void) const { return m_OwnerName; }
int GetCollarColor(void) const { return m_CollarColor; }
// Set functions
@@ -35,7 +36,7 @@ public:
void SetIsTame (bool a_IsTame) { m_IsTame = a_IsTame; }
void SetIsBegging (bool a_IsBegging) { m_IsBegging = a_IsBegging; }
void SetIsAngry (bool a_IsAngry) { m_IsAngry = a_IsAngry; }
- void SetOwner (AString a_NewOwner) { m_Owner = a_NewOwner; }
+ void SetOwner (AString a_NewOwner) { m_OwnerName = a_NewOwner; }
void SetCollarColor(int a_CollarColor) { m_CollarColor = a_CollarColor; }
protected:
@@ -44,7 +45,7 @@ protected:
bool m_IsTame;
bool m_IsBegging;
bool m_IsAngry;
- AString m_Owner;
+ AString m_OwnerName;
int m_CollarColor;
} ;