summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Blaze.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-03-14 22:32:23 +0100
committerMattes D <github@xoft.cz>2015-03-14 22:32:23 +0100
commitebf0126dc9ecc0426102374796b4e18761bebb10 (patch)
treec81db2f80f9df119fa3099b31e9d574756f6441d /src/Mobs/Blaze.cpp
parentMerge pull request #1809 from flx5/master (diff)
parentFixed a small bug (diff)
downloadcuberite-ebf0126dc9ecc0426102374796b4e18761bebb10.tar
cuberite-ebf0126dc9ecc0426102374796b4e18761bebb10.tar.gz
cuberite-ebf0126dc9ecc0426102374796b4e18761bebb10.tar.bz2
cuberite-ebf0126dc9ecc0426102374796b4e18761bebb10.tar.lz
cuberite-ebf0126dc9ecc0426102374796b4e18761bebb10.tar.xz
cuberite-ebf0126dc9ecc0426102374796b4e18761bebb10.tar.zst
cuberite-ebf0126dc9ecc0426102374796b4e18761bebb10.zip
Diffstat (limited to 'src/Mobs/Blaze.cpp')
-rw-r--r--src/Mobs/Blaze.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Blaze.cpp b/src/Mobs/Blaze.cpp
index 172ccd071..89eeb3709 100644
--- a/src/Mobs/Blaze.cpp
+++ b/src/Mobs/Blaze.cpp
@@ -32,7 +32,7 @@ void cBlaze::GetDrops(cItems & a_Drops, cEntity * a_Killer)
void cBlaze::Attack(std::chrono::milliseconds a_Dt)
{
- m_AttackInterval += a_Dt.count() * m_AttackRate;
+ m_AttackInterval += (static_cast<float>(a_Dt.count()) / 1000) * m_AttackRate;
if ((m_Target != nullptr) && (m_AttackInterval > 3.0))
{