summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Monster.cpp
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2015-05-20 23:40:25 +0200
committerworktycho <work.tycho@gmail.com>2015-05-20 23:40:25 +0200
commit1bdd205eb8195c4e44d2072aa2e1ddb0a11745c6 (patch)
tree68b959cc0ca2eaee66add4887fed70785e4ce283 /src/Mobs/Monster.cpp
parentMerge pull request #2074 from SafwatHalaby/rmUnique (diff)
parentPath recalculation improvements (diff)
downloadcuberite-1bdd205eb8195c4e44d2072aa2e1ddb0a11745c6.tar
cuberite-1bdd205eb8195c4e44d2072aa2e1ddb0a11745c6.tar.gz
cuberite-1bdd205eb8195c4e44d2072aa2e1ddb0a11745c6.tar.bz2
cuberite-1bdd205eb8195c4e44d2072aa2e1ddb0a11745c6.tar.lz
cuberite-1bdd205eb8195c4e44d2072aa2e1ddb0a11745c6.tar.xz
cuberite-1bdd205eb8195c4e44d2072aa2e1ddb0a11745c6.tar.zst
cuberite-1bdd205eb8195c4e44d2072aa2e1ddb0a11745c6.zip
Diffstat (limited to 'src/Mobs/Monster.cpp')
-rw-r--r--src/Mobs/Monster.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp
index 2b00f6959..f5d961096 100644
--- a/src/Mobs/Monster.cpp
+++ b/src/Mobs/Monster.cpp
@@ -177,13 +177,14 @@ bool cMonster::TickPathFinding(cChunk & a_Chunk)
case ePathFinderStatus::NEARBY_FOUND:
{
m_NoPathToTarget = true;
- m_Path->AcceptNearbyPath();
+ m_PathFinderDestination = m_Path->AcceptNearbyPath();
break;
}
case ePathFinderStatus::PATH_NOT_FOUND:
{
- StopMovingToPosition(); // Give up pathfinding to that destination.
+ ResetPathFinding(); // Try to calculate a path again.
+ // Note that the next time may succeed, e.g. if a player breaks a barrier.
break;
}
case ePathFinderStatus::CALCULATING: