diff options
author | Gargaj <gargaj@conspiracy.hu> | 2015-11-08 13:44:17 +0100 |
---|---|---|
committer | Gargaj <gargaj@conspiracy.hu> | 2015-11-08 21:01:02 +0100 |
commit | 392a3d319c8f8c92bc3e9c9d2c1707db955a2ae2 (patch) | |
tree | 8b507c8cdce5e25024b3d3a53d2d30c74597dfaf /src/Mobs/Creeper.cpp | |
parent | Merge pull request #2624 from Gargaj/patch-2 (diff) | |
download | cuberite-392a3d319c8f8c92bc3e9c9d2c1707db955a2ae2.tar cuberite-392a3d319c8f8c92bc3e9c9d2c1707db955a2ae2.tar.gz cuberite-392a3d319c8f8c92bc3e9c9d2c1707db955a2ae2.tar.bz2 cuberite-392a3d319c8f8c92bc3e9c9d2c1707db955a2ae2.tar.lz cuberite-392a3d319c8f8c92bc3e9c9d2c1707db955a2ae2.tar.xz cuberite-392a3d319c8f8c92bc3e9c9d2c1707db955a2ae2.tar.zst cuberite-392a3d319c8f8c92bc3e9c9d2c1707db955a2ae2.zip |
Diffstat (limited to 'src/Mobs/Creeper.cpp')
-rw-r--r-- | src/Mobs/Creeper.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Mobs/Creeper.cpp b/src/Mobs/Creeper.cpp index 353d0f009..141f77d08 100644 --- a/src/Mobs/Creeper.cpp +++ b/src/Mobs/Creeper.cpp @@ -121,7 +121,7 @@ bool cCreeper::DoTakeDamage(TakeDamageInfo & a_TDI) -void cCreeper::Attack(std::chrono::milliseconds a_Dt) +bool cCreeper::Attack(std::chrono::milliseconds a_Dt) { UNUSED(a_Dt); @@ -130,7 +130,10 @@ void cCreeper::Attack(std::chrono::milliseconds a_Dt) m_World->BroadcastSoundEffect("game.tnt.primed", GetPosX(), GetPosY(), GetPosZ(), 1.f, (0.75f + (static_cast<float>((GetUniqueID() * 23) % 32)) / 64)); m_bIsBlowing = true; m_World->BroadcastEntityMetadata(*this); + + return true; } + return false; } |