From 58534dea16d9cd830b685b65c740092ac55e8917 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Wed, 1 Apr 2020 00:57:34 -0500 Subject: [PATCH] Some cleanup [skip ci] --- zone/main.cpp | 5 ----- zone/mob_ai.cpp | 6 +++++- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/zone/main.cpp b/zone/main.cpp index 0a5739f59..c7c03a33a 100644 --- a/zone/main.cpp +++ b/zone/main.cpp @@ -254,11 +254,6 @@ int main(int argc, char** argv) { } else { content_db.SetMysql(database.getMySQL()); } -// -// auto results = content_db.QueryDatabase("SELECT id FROM items limit 10"); -// for (auto row = results.begin(); row != results.end(); ++row) { -// std::cout << row[0] << std::endl; -// } /* Register Log System and Settings */ LogSys.SetGMSayHandler(&Zone::GMSayHookCallBackProcess); diff --git a/zone/mob_ai.cpp b/zone/mob_ai.cpp index fae923bd3..708c03fa6 100644 --- a/zone/mob_ai.cpp +++ b/zone/mob_ai.cpp @@ -1821,7 +1821,11 @@ void NPC::AI_SetupNextWaypoint() { } else { pause_timer_complete = false; - LogPathing("We are departing waypoint [{}]", cur_wp); + LogPathingDetail( + "[{}] departing waypoint [{}]", + GetCleanName(), + cur_wp + ); //if we were under quest control (with no grid), we are done now.. if (cur_wp == EQEmu::WaypointStatus::QuestControlNoGrid) { LogPathing("Non-grid quest mob has reached its quest ordered waypoint. Leaving pathing mode");