Add map debugging [skip ci]

This commit is contained in:
Akkadius 2016-11-11 22:31:54 -06:00
parent 3447c86562
commit e8d80a436e

View File

@ -289,6 +289,8 @@ Map *Map::LoadMapFile(std::string file) {
filename += file;
filename += ".map";
Log.Out(Logs::General, Logs::Status, "Attempting to load Map File :: '%s'", filename.c_str());
auto m = new Map();
if (m->Load(filename)) {
return m;