summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Wolf.h
diff options
context:
space:
mode:
authorLogicParrot <LogicParrot@users.noreply.github.com>2017-08-27 08:24:42 +0200
committerLogicParrot <LogicParrot@users.noreply.github.com>2017-08-27 08:24:42 +0200
commitd2d5edfe06d8f284dc4a4520943f3d1a625e3f2b (patch)
treeff5a5bd04d41de8abd3e0b5ad1b1df472fbef96c /src/Mobs/Wolf.h
parentconflict fix (diff)
downloadcuberite-d2d5edfe06d8f284dc4a4520943f3d1a625e3f2b.tar
cuberite-d2d5edfe06d8f284dc4a4520943f3d1a625e3f2b.tar.gz
cuberite-d2d5edfe06d8f284dc4a4520943f3d1a625e3f2b.tar.bz2
cuberite-d2d5edfe06d8f284dc4a4520943f3d1a625e3f2b.tar.lz
cuberite-d2d5edfe06d8f284dc4a4520943f3d1a625e3f2b.tar.xz
cuberite-d2d5edfe06d8f284dc4a4520943f3d1a625e3f2b.tar.zst
cuberite-d2d5edfe06d8f284dc4a4520943f3d1a625e3f2b.zip
Diffstat (limited to 'src/Mobs/Wolf.h')
-rw-r--r--src/Mobs/Wolf.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Mobs/Wolf.h b/src/Mobs/Wolf.h
index 07d0b5f27..851cf888b 100644
--- a/src/Mobs/Wolf.h
+++ b/src/Mobs/Wolf.h
@@ -10,9 +10,9 @@ class cEntity;
class cWolf :
- public cPassiveAggressiveMonster
+ public cMonster
{
- typedef cPassiveAggressiveMonster super;
+ typedef cMonster super;
public:
cWolf(void);
@@ -24,7 +24,6 @@ public:
virtual void OnRightClicked(cPlayer & a_Player) override;
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
virtual void TickFollowPlayer();
- virtual bool Attack(std::chrono::milliseconds a_Dt) override;
// Get functions
bool IsSitting (void) const override { return m_IsSitting; }