mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
More fixes for wrong format arg/value pairs.
This commit is contained in:
parent
ed7390dede
commit
166007525e
14 changed files with 53 additions and 37 deletions
|
|
@ -833,8 +833,9 @@ void WorldSession::HandleTurnInPetitionOpcode(WorldPacket & recv_data)
|
|||
for(uint8 i = 0; i < signs; ++i)
|
||||
{
|
||||
Field* fields = result->Fetch();
|
||||
sLog.outDebug("PetitionsHandler: adding arena member %u", fields[0].GetUInt64());
|
||||
at->AddMember(fields[0].GetUInt64());
|
||||
uint64 memberGUID = fields[0].GetUInt64();
|
||||
sLog.outDebug("PetitionsHandler: adding arena member %u", GUID_LOPART(memberGUID));
|
||||
at->AddMember(memberGUID);
|
||||
result->NextRow();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue