summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Creeper.cpp
diff options
context:
space:
mode:
authorGargaj <gargaj@conspiracy.hu>2015-11-08 13:44:17 +0100
committerGargaj <gargaj@conspiracy.hu>2015-11-08 21:01:02 +0100
commit392a3d319c8f8c92bc3e9c9d2c1707db955a2ae2 (patch)
tree8b507c8cdce5e25024b3d3a53d2d30c74597dfaf /src/Mobs/Creeper.cpp
parentMerge pull request #2624 from Gargaj/patch-2 (diff)
downloadcuberite-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.cpp5
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;
}