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

View File

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