diff options
author | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-12-22 06:43:50 +0100 |
---|---|---|
committer | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-12-24 05:20:16 +0100 |
commit | dfeced18b2397234340b94fe0ba61cc567c9cfc5 (patch) | |
tree | bc50fe2d4f011c05eedd389ab4924747d0085baf /src/Mobs/Horse.cpp | |
parent | Merge pull request #2811 from cuberite/isblockfence (diff) | |
download | cuberite-dfeced18b2397234340b94fe0ba61cc567c9cfc5.tar cuberite-dfeced18b2397234340b94fe0ba61cc567c9cfc5.tar.gz cuberite-dfeced18b2397234340b94fe0ba61cc567c9cfc5.tar.bz2 cuberite-dfeced18b2397234340b94fe0ba61cc567c9cfc5.tar.lz cuberite-dfeced18b2397234340b94fe0ba61cc567c9cfc5.tar.xz cuberite-dfeced18b2397234340b94fe0ba61cc567c9cfc5.tar.zst cuberite-dfeced18b2397234340b94fe0ba61cc567c9cfc5.zip |
Diffstat (limited to 'src/Mobs/Horse.cpp')
-rw-r--r-- | src/Mobs/Horse.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Mobs/Horse.cpp b/src/Mobs/Horse.cpp index f133f9912..01906b7b4 100644 --- a/src/Mobs/Horse.cpp +++ b/src/Mobs/Horse.cpp @@ -72,7 +72,7 @@ void cHorse::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) m_bIsTame = true; } } - + if (m_bIsRearing) { if (m_RearTickCount == 20) @@ -161,12 +161,12 @@ void cHorse::GetDrops(cItems & a_Drops, cEntity * a_Killer) -void cHorse::InStateIdle(std::chrono::milliseconds a_Dt) +void cHorse::InStateIdle(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) { // If horse is tame and someone is sitting on it, don't walk around if ((!m_bIsTame) || (m_Attachee == nullptr)) { - super::InStateIdle(a_Dt); + super::InStateIdle(a_Dt, a_Chunk); } } |