diff options
author | Julian Laubstein <julianlaubstein@yahoo.de> | 2015-11-05 18:10:19 +0100 |
---|---|---|
committer | Julian Laubstein <julianlaubstein@yahoo.de> | 2015-11-05 18:10:19 +0100 |
commit | 056822845d6d189a12f3d68ef95ffa706a7a1103 (patch) | |
tree | f595a53b3bfb9be4a2b5bc0dec1f3dca420f6084 /src/Entities/ThrownEggEntity.cpp | |
parent | Merge pull request #2607 from cuberite/IgnoreLibArtefacts (diff) | |
parent | Destroy an ender crystal, damage a dragon when hit by an egg. (diff) | |
download | cuberite-056822845d6d189a12f3d68ef95ffa706a7a1103.tar cuberite-056822845d6d189a12f3d68ef95ffa706a7a1103.tar.gz cuberite-056822845d6d189a12f3d68ef95ffa706a7a1103.tar.bz2 cuberite-056822845d6d189a12f3d68ef95ffa706a7a1103.tar.lz cuberite-056822845d6d189a12f3d68ef95ffa706a7a1103.tar.xz cuberite-056822845d6d189a12f3d68ef95ffa706a7a1103.tar.zst cuberite-056822845d6d189a12f3d68ef95ffa706a7a1103.zip |
Diffstat (limited to 'src/Entities/ThrownEggEntity.cpp')
-rw-r--r-- | src/Entities/ThrownEggEntity.cpp | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/src/Entities/ThrownEggEntity.cpp b/src/Entities/ThrownEggEntity.cpp index 91bca1da7..d302151d8 100644 --- a/src/Entities/ThrownEggEntity.cpp +++ b/src/Entities/ThrownEggEntity.cpp @@ -21,7 +21,7 @@ cThrownEggEntity::cThrownEggEntity(cEntity * a_Creator, double a_X, double a_Y, void cThrownEggEntity::OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace) { TrySpawnChicken(a_HitPos); - + m_DestroyTimer = 2; } @@ -32,11 +32,18 @@ void cThrownEggEntity::OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_H void cThrownEggEntity::OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos) { int TotalDamage = 0; - // TODO: If entity is Ender Crystal, destroy it - + // If entity is an Ender Dragon or Ender Crystal, it is damaged. + if ( + (a_EntityHit.IsMob() && (static_cast<cMonster &>(a_EntityHit).GetMobType() == mtEnderDragon)) || + a_EntityHit.IsEnderCrystal() + ) + { + TotalDamage = 1; + } + TrySpawnChicken(a_HitPos); a_EntityHit.TakeDamage(dtRangedAttack, this, TotalDamage, 1); - + m_DestroyTimer = 5; } @@ -79,3 +86,7 @@ void cThrownEggEntity::TrySpawnChicken(const Vector3d & a_HitPos) m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken, false); } } + + + + |