diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-09 10:50:38 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-09 10:50:38 +0200 |
commit | 372dbbb994a1414369fe38367d458a0c32866a79 (patch) | |
tree | 5cd564fbb0c4b7c0b47f3cb64594c34f9361f1dc /src/Entities/ThrownSnowballEntity.h | |
parent | Updated generator prefabs to current Gallery contents. (diff) | |
parent | Added extra space before comments (diff) | |
download | cuberite-372dbbb994a1414369fe38367d458a0c32866a79.tar cuberite-372dbbb994a1414369fe38367d458a0c32866a79.tar.gz cuberite-372dbbb994a1414369fe38367d458a0c32866a79.tar.bz2 cuberite-372dbbb994a1414369fe38367d458a0c32866a79.tar.lz cuberite-372dbbb994a1414369fe38367d458a0c32866a79.tar.xz cuberite-372dbbb994a1414369fe38367d458a0c32866a79.tar.zst cuberite-372dbbb994a1414369fe38367d458a0c32866a79.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/ThrownSnowballEntity.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Entities/ThrownSnowballEntity.h b/src/Entities/ThrownSnowballEntity.h index a09512e37..9a8770379 100644 --- a/src/Entities/ThrownSnowballEntity.h +++ b/src/Entities/ThrownSnowballEntity.h @@ -30,5 +30,26 @@ protected: // cProjectileEntity overrides: virtual void OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace) override; virtual void OnHitEntity (cEntity & a_EntityHit, const Vector3d & a_HitPos) override; + virtual void Tick (float a_Dt, cChunk & a_Chunk) override + { + if (m_DestroyTimer > 0) + { + m_DestroyTimer--; + if (m_DestroyTimer == 0) + { + Destroy(); + return; + } + } + else + { + super::Tick(a_Dt, a_Chunk); + } + } + +private: + + /** Time in ticks to wait for the hit animation to begin before destroying */ + int m_DestroyTimer; } ; // tolua_export |