mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/AuctionHouse: Ported WorldSession::SendAuctionHello argument type change from a3aecbdd92
This commit is contained in:
@@ -992,7 +992,7 @@ void WorldSession::HandleAuctionSetFavoriteItem(WorldPackets::AuctionHouse::Auct
|
||||
}
|
||||
|
||||
//this void causes that auction window is opened
|
||||
void WorldSession::SendAuctionHello(ObjectGuid guid, Creature* unit)
|
||||
void WorldSession::SendAuctionHello(ObjectGuid guid, Unit const* unit)
|
||||
{
|
||||
if (GetPlayer()->GetLevel() < sWorld->getIntConfig(CONFIG_AUCTION_LEVEL_REQ))
|
||||
{
|
||||
|
||||
@@ -1110,7 +1110,7 @@ class TC_GAME_API WorldSession
|
||||
}
|
||||
}
|
||||
// Auction
|
||||
void SendAuctionHello(ObjectGuid guid, Creature* unit);
|
||||
void SendAuctionHello(ObjectGuid guid, Unit const* unit);
|
||||
|
||||
/**
|
||||
* @fn void WorldSession::SendAuctionCommandResult(uint32 auctionId, uint32 action, uint32 errorCode, uint32 bagError = 0);
|
||||
|
||||
Reference in New Issue
Block a user