diff options
author | Mattes D <github@xoft.cz> | 2015-05-01 13:47:48 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-05-01 13:47:48 +0200 |
commit | aa142757dbf34fca603799aaef2a4dc047b0bd14 (patch) | |
tree | 7caec55ca1792af1d0e3bcb7a8b44eeff65ac15f /src/Mobs/Wolf.cpp | |
parent | Merge pull request #1924 from mc-server/BlockAreaCountNonAir (diff) | |
parent | A* Pathfinding and better monster AI (diff) | |
download | cuberite-aa142757dbf34fca603799aaef2a4dc047b0bd14.tar cuberite-aa142757dbf34fca603799aaef2a4dc047b0bd14.tar.gz cuberite-aa142757dbf34fca603799aaef2a4dc047b0bd14.tar.bz2 cuberite-aa142757dbf34fca603799aaef2a4dc047b0bd14.tar.lz cuberite-aa142757dbf34fca603799aaef2a4dc047b0bd14.tar.xz cuberite-aa142757dbf34fca603799aaef2a4dc047b0bd14.tar.zst cuberite-aa142757dbf34fca603799aaef2a4dc047b0bd14.zip |
Diffstat (limited to 'src/Mobs/Wolf.cpp')
-rw-r--r-- | src/Mobs/Wolf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mobs/Wolf.cpp b/src/Mobs/Wolf.cpp index b3eefdf79..c66763f17 100644 --- a/src/Mobs/Wolf.cpp +++ b/src/Mobs/Wolf.cpp @@ -137,7 +137,7 @@ void cWolf::OnRightClicked(cPlayer & a_Player) } } } - + m_World->BroadcastEntityMetadata(*this); } @@ -203,7 +203,7 @@ void cWolf::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) } else if (IsSitting()) { - m_bMovingToDestination = false; + StopMovingToPosition(); } } |