[Logs] Change pathing log messages from Error to Pathing. (#3604)

Change pathing log messages from `Error` to `Pathing`.
This commit is contained in:
JJ 2023-09-29 11:54:52 -04:00 committed by GitHub
parent 2a648507f2
commit 79918ebaba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -157,7 +157,7 @@ void NPC::ResumeWandering()
}
else
{
LogError("NPC not paused - can't resume wandering: [{}]", (unsigned long)GetNPCTypeID());
LogPathing("NPC not paused - can't resume wandering: [{}]", (unsigned long)GetNPCTypeID());
return;
}
@ -173,7 +173,7 @@ void NPC::ResumeWandering()
}
else
{
LogError("NPC not on grid - can't resume wandering: [{}]", (unsigned long)GetNPCTypeID());
LogPathing("NPC not on grid - can't resume wandering: [{}]", (unsigned long)GetNPCTypeID());
}
return;
}
@ -195,7 +195,7 @@ void NPC::PauseWandering(int pausetime)
}
}
else {
LogError("NPC not on grid - can't pause wandering: [{}]", (unsigned long)GetNPCTypeID());
LogPathing("NPC not on grid - can't pause wandering: [{}]", (unsigned long)GetNPCTypeID());
}
return;
}