summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Creeper.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-03-02 14:58:16 +0100
committerMattes D <github@xoft.cz>2014-03-02 14:58:16 +0100
commit04d5cab4efef4444db5fa5673b58fa5578e8d205 (patch)
treebfebf1ba211aaa595cd0396804be75e51899a810 /src/Mobs/Creeper.h
parentMerge pull request #733 from Howaner/Slabs (diff)
parentCreeper fixes (diff)
downloadcuberite-04d5cab4efef4444db5fa5673b58fa5578e8d205.tar
cuberite-04d5cab4efef4444db5fa5673b58fa5578e8d205.tar.gz
cuberite-04d5cab4efef4444db5fa5673b58fa5578e8d205.tar.bz2
cuberite-04d5cab4efef4444db5fa5673b58fa5578e8d205.tar.lz
cuberite-04d5cab4efef4444db5fa5673b58fa5578e8d205.tar.xz
cuberite-04d5cab4efef4444db5fa5673b58fa5578e8d205.tar.zst
cuberite-04d5cab4efef4444db5fa5673b58fa5578e8d205.zip
Diffstat (limited to 'src/Mobs/Creeper.h')
-rw-r--r--src/Mobs/Creeper.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Mobs/Creeper.h b/src/Mobs/Creeper.h
index 0f71e5ad2..9abca369b 100644
--- a/src/Mobs/Creeper.h
+++ b/src/Mobs/Creeper.h
@@ -21,13 +21,14 @@ public:
virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
virtual void Attack(float a_Dt) override;
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
+ virtual void OnRightClicked(cPlayer & a_Player) override;
bool IsBlowing(void) const {return m_bIsBlowing; }
bool IsCharged(void) const {return m_bIsCharged; }
private:
- bool m_bIsBlowing, m_bIsCharged;
+ bool m_bIsBlowing, m_bIsCharged, m_BurnedWithFlintAndSteel;
int m_ExplodingTimer;
} ;