forked from mirror/openmw-tes3mp
[Server] Fix log message
This commit is contained in:
parent
e909652b9b
commit
ee494887e1
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ void CellController::update(Player *player)
|
|||
}
|
||||
else
|
||||
{
|
||||
LOG_MESSAGE_SIMPLE(Log::LOG_VERBOSE, "Player %s (%d) unloaded cell: %s", player->npc.mName, player->getId(), cell.cell.getDescription().c_str());
|
||||
LOG_MESSAGE_SIMPLE(Log::LOG_VERBOSE, "Player %s (%d) unloaded cell: %s", player->npc.mName.c_str(), player->getId(), cell.cell.getDescription().c_str());
|
||||
Cell *c;
|
||||
if (!cell.cell.isExterior())
|
||||
c = getCellByName(cell.cell.mName);
|
||||
|
|
Loading…
Reference in a new issue