mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-08 07:48:02 +00:00
fix(Core/Misc): BuildAuctionMailBody guid (#5743)
Co-Authored-By: UltraNix <80540499+UltraNix@users.noreply.github.com>
This commit is contained in:
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user