From 4b15121f70f9415467ee7434c4a9e0c8c71fc734 Mon Sep 17 00:00:00 2001 From: JJ Date: Sat, 4 Jun 2016 19:53:22 -0400 Subject: [PATCH] No need to have extra slash anymore due to b997a040d7cb5a87607023e41be0420652eb4933 --- zone/pathing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/pathing.cpp b/zone/pathing.cpp index a39441564..16b340d94 100644 --- a/zone/pathing.cpp +++ b/zone/pathing.cpp @@ -52,7 +52,7 @@ PathManager* PathManager::LoadPathFile(const char* ZoneName) strlwr(LowerCaseZoneName); - snprintf(ZonePathFileName, 250, "%s/%s.path", Config->MapDir.c_str(),LowerCaseZoneName); + snprintf(ZonePathFileName, 250, "%s%s.path", Config->MapDir.c_str(), LowerCaseZoneName); if((PathFile = fopen(ZonePathFileName, "rb"))) {