mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-02 15:17:27 +01:00
Core/DBLayer: Fixed mismatched field type in auction house prepared statement.
Closes #9694
This commit is contained in:
@@ -658,7 +658,7 @@ void AuctionEntry::SaveToDB(SQLTransaction& trans) const
|
||||
stmt->setUInt32(2, itemGUIDLow);
|
||||
stmt->setUInt32(3, owner);
|
||||
stmt->setInt32 (4, int32(buyout));
|
||||
stmt->setUInt64(5, uint64(expire_time));
|
||||
stmt->setUInt32(5, uint32(expire_time));
|
||||
stmt->setUInt32(6, bidder);
|
||||
stmt->setInt32 (7, int32(bid));
|
||||
stmt->setInt32 (8, int32(startbid));
|
||||
|
||||
Reference in New Issue
Block a user