diff options
author | archshift <admin@archshift.com> | 2014-04-27 02:19:45 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-04-27 02:19:45 +0200 |
commit | 2f9580ad650ff69e71991b87d6b554ce080624a3 (patch) | |
tree | 19eddb39a9228363ddae9794455407e1ef342d9a /src/Entities/ProjectileExpBottle.cpp | |
parent | Moved cThrownEnderPearl out of ProjectileEntity.h (diff) | |
download | cuberite-2f9580ad650ff69e71991b87d6b554ce080624a3.tar cuberite-2f9580ad650ff69e71991b87d6b554ce080624a3.tar.gz cuberite-2f9580ad650ff69e71991b87d6b554ce080624a3.tar.bz2 cuberite-2f9580ad650ff69e71991b87d6b554ce080624a3.tar.lz cuberite-2f9580ad650ff69e71991b87d6b554ce080624a3.tar.xz cuberite-2f9580ad650ff69e71991b87d6b554ce080624a3.tar.zst cuberite-2f9580ad650ff69e71991b87d6b554ce080624a3.zip |
Diffstat (limited to 'src/Entities/ProjectileExpBottle.cpp')
-rw-r--r-- | src/Entities/ProjectileExpBottle.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Entities/ProjectileExpBottle.cpp b/src/Entities/ProjectileExpBottle.cpp new file mode 100644 index 000000000..3af2b4a4a --- /dev/null +++ b/src/Entities/ProjectileExpBottle.cpp @@ -0,0 +1,27 @@ +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "ProjectileExpBottle.h" +#include "../World.h" + + + + + +cExpBottleEntity::cExpBottleEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d & a_Speed) : +super(pkExpBottle, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25) +{ + SetSpeed(a_Speed); +} + + + + + +void cExpBottleEntity::OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace) +{ + // Spawn an experience orb with a reward between 3 and 11. + m_World->BroadcastSoundParticleEffect(2002, POSX_TOINT, POSY_TOINT, POSZ_TOINT, 0); + m_World->SpawnExperienceOrb(GetPosX(), GetPosY(), GetPosZ(), 3 + m_World->GetTickRandomNumber(8)); + + Destroy(); +}
\ No newline at end of file |