diff options
author | archshift <admin@archshft.com> | 2014-05-12 01:25:21 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-05-12 01:28:48 +0200 |
commit | 3f9e00a3f3486c2845115e495d66f438f90825f3 (patch) | |
tree | f1ca0c7917206b47998ca6ee143fbbcbb3e50bf1 /src/Mobs/Monster.cpp | |
parent | Fixed a warning and a complaint about a never-read variable. (diff) | |
download | cuberite-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 'src/Mobs/Monster.cpp')
-rw-r--r-- | src/Mobs/Monster.cpp | 2 |
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(); |