diff options
author | Mattes D <github@xoft.cz> | 2014-04-02 12:00:26 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-04-02 12:00:26 +0200 |
commit | 01c38505fd26a207e6bb0ad5916311c082c12b31 (patch) | |
tree | 56e499098895a03bc66beac5aa33ba4ee261f17e /src/Mobs/Wither.h | |
parent | Debuggers: Added a Base64 API roundtrip test. (diff) | |
parent | Fixed clang compilation (diff) | |
download | cuberite-01c38505fd26a207e6bb0ad5916311c082c12b31.tar cuberite-01c38505fd26a207e6bb0ad5916311c082c12b31.tar.gz cuberite-01c38505fd26a207e6bb0ad5916311c082c12b31.tar.bz2 cuberite-01c38505fd26a207e6bb0ad5916311c082c12b31.tar.lz cuberite-01c38505fd26a207e6bb0ad5916311c082c12b31.tar.xz cuberite-01c38505fd26a207e6bb0ad5916311c082c12b31.tar.zst cuberite-01c38505fd26a207e6bb0ad5916311c082c12b31.zip |
Diffstat (limited to 'src/Mobs/Wither.h')
-rw-r--r-- | src/Mobs/Wither.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Mobs/Wither.h b/src/Mobs/Wither.h index d09e3607a..bc78bfaad 100644 --- a/src/Mobs/Wither.h +++ b/src/Mobs/Wither.h @@ -20,8 +20,12 @@ public: unsigned int GetNumInvulnerableTicks(void) const { return m_InvulnerableTicks; } void SetNumInvulnerableTicks(unsigned int a_Ticks) { m_InvulnerableTicks = a_Ticks; } + + /** Returns whether the wither is invulnerable to arrows. */ + bool IsArmored(void) const; // cEntity overrides + virtual bool Initialize(cWorld * a_World) override; virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override; virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override; virtual void Tick(float a_Dt, cChunk & a_Chunk) override; |