Patch notes - navmesh merge

This commit is contained in:
Akkadius
2018-05-28 00:59:02 -05:00
parent 8a911682bf
commit ac25d49a62
2 changed files with 17 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
IPathfinder *IPathfinder::Load(const std::string &zone) {
struct stat statbuffer;
std::string waypoint_path = fmt::format("maps/{0}.path", zone);
std::string waypoint_path = fmt::format("maps/path/{0}.path", zone);
std::string navmesh_path = fmt::format("maps/nav/{0}.nav", zone);
if (stat(navmesh_path.c_str(), &statbuffer) == 0) {
return new PathfinderNavmesh(navmesh_path);