fix(Core/Misc): BuildAuctionMailBody guid (#5743)

Co-Authored-By: UltraNix <80540499+UltraNix@users.noreply.github.com>
This commit is contained in:
Patrick Lewis 2021-05-08 23:32:55 -07:00 committed by GitHub
parent e9ebb1ae57
commit 6bb8972194
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -784,7 +784,7 @@ std::string AuctionEntry::BuildAuctionMailBody(ObjectGuid guid, uint32 bid, uint
{
std::ostringstream strm;
strm.width(16);
strm << guid.ToString();
strm << std::right << std::hex << guid.GetRawValue();
strm << std::dec << ':' << bid << ':' << buyout;
strm << ':' << deposit << ':' << cut;
return strm.str();