summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Path.h
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2015-05-15 19:53:16 +0200
committerworktycho <work.tycho@gmail.com>2015-05-15 19:53:16 +0200
commitc6658af155b607d11a29651afc2c9e9d0082bcec (patch)
treef8d44ad24952898fe1cf6c282b9ba2128fdd3384 /src/Mobs/Path.h
parentUnify shields. (diff)
parentuniquePTR (diff)
downloadcuberite-c6658af155b607d11a29651afc2c9e9d0082bcec.tar
cuberite-c6658af155b607d11a29651afc2c9e9d0082bcec.tar.gz
cuberite-c6658af155b607d11a29651afc2c9e9d0082bcec.tar.bz2
cuberite-c6658af155b607d11a29651afc2c9e9d0082bcec.tar.lz
cuberite-c6658af155b607d11a29651afc2c9e9d0082bcec.tar.xz
cuberite-c6658af155b607d11a29651afc2c9e9d0082bcec.tar.zst
cuberite-c6658af155b607d11a29651afc2c9e9d0082bcec.zip
Diffstat (limited to '')
-rw-r--r--src/Mobs/Path.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Path.h b/src/Mobs/Path.h
index adae77984..008722d29 100644
--- a/src/Mobs/Path.h
+++ b/src/Mobs/Path.h
@@ -131,7 +131,7 @@ private:
/* Pathfinding fields */
std::priority_queue<cPathCell *, std::vector<cPathCell *>, compareHeuristics> m_OpenList;
- std::unordered_map<Vector3i, cPathCell *, VectorHasher> m_Map;
+ std::unordered_map<Vector3i, UniquePtr<cPathCell>, VectorHasher> m_Map;
Vector3i m_Destination;
Vector3i m_Source;
int m_StepsLeft;