Added zone map mmf discovery message

This commit is contained in:
Uleat 2016-07-29 21:58:42 -04:00
parent 6b3078d0f7
commit 4decdb3e4d

View File

@ -286,8 +286,10 @@ Map *Map::LoadMapFile(std::string file) {
#ifdef USE_MAP_MMFS
bool Map::Load(std::string filename, bool force_mmf_overwrite)
{
if (LoadMMF(filename, force_mmf_overwrite))
if (LoadMMF(filename, force_mmf_overwrite)) {
Log.Out(Logs::General, Logs::Zone_Server, "Zone map mmf found - using it in lieu of '%s'", filename.c_str());
return true;
}
#else
bool Map::Load(std::string filename)
{