fix(Core/Misc): BuildAuctionMailBody guid (#5743)
Co-Authored-By: UltraNix <80540499+UltraNix@users.noreply.github.com>
This commit is contained in:
parent
e9ebb1ae57
commit
6bb8972194
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue