chore(Core/Misc): Correct some fmt outputs (#17091)

This commit is contained in:
Kitzunu
2023-08-27 06:23:26 +02:00
committed by GitHub
parent aea540181b
commit 3eb2463c69
3 changed files with 8 additions and 8 deletions

View File

@@ -68,7 +68,7 @@ void WorldSession::HandleLfgJoinOpcode(WorldPackets::LFG::LFGJoin& packet)
}
LOG_DEBUG("network", "CMSG_LFG_JOIN [{}] roles: {}, Dungeons: {}, Comment: {}",
GetPlayerInfo().c_str(), packet.Roles, newDungeons.size(), packet.Comment.c_str());
GetPlayerInfo(), packet.Roles, newDungeons.size(), packet.Comment);
sLFGMgr->JoinLfg(GetPlayer(), uint8(packet.Roles), newDungeons, packet.Comment);
}