summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Monster.cpp
diff options
context:
space:
mode:
authorarchshift <admin@archshft.com>2014-05-12 01:25:21 +0200
committerarchshift <admin@archshift.com>2014-05-12 01:28:48 +0200
commit3f9e00a3f3486c2845115e495d66f438f90825f3 (patch)
treef1ca0c7917206b47998ca6ee143fbbcbb3e50bf1 /src/Mobs/Monster.cpp
parentFixed a warning and a complaint about a never-read variable. (diff)
downloadcuberite-3f9e00a3f3486c2845115e495d66f438f90825f3.tar
cuberite-3f9e00a3f3486c2845115e495d66f438f90825f3.tar.gz
cuberite-3f9e00a3f3486c2845115e495d66f438f90825f3.tar.bz2
cuberite-3f9e00a3f3486c2845115e495d66f438f90825f3.tar.lz
cuberite-3f9e00a3f3486c2845115e495d66f438f90825f3.tar.xz
cuberite-3f9e00a3f3486c2845115e495d66f438f90825f3.tar.zst
cuberite-3f9e00a3f3486c2845115e495d66f438f90825f3.zip
Diffstat (limited to '')
-rw-r--r--src/Mobs/Monster.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp
index 62670907f..5832edb9f 100644
--- a/src/Mobs/Monster.cpp
+++ b/src/Mobs/Monster.cpp
@@ -355,6 +355,8 @@ void cMonster::Tick(float a_Dt, cChunk & a_Chunk)
InStateEscaping(a_Dt);
break;
}
+
+ case ATTACKING: break;
} // switch (m_EMState)
BroadcastMovementUpdate();