Core/AuctionHouse: After taking a break at the start of patch 8.3 auction house is now back in business.
Port From (https://github.com/TrinityCore/TrinityCore/commit/aced88b09bd918b0ed17b6c5e8a6048788600d9d)
This commit is contained in:
@@ -53,7 +53,7 @@ namespace Framework.Database
|
||||
m_trans = trans;
|
||||
}
|
||||
|
||||
public bool Execute<T>(MySqlBase<T> mySqlBase)
|
||||
public virtual bool Execute<T>(MySqlBase<T> mySqlBase)
|
||||
{
|
||||
MySqlErrorCode errorCode = TryExecute(mySqlBase);
|
||||
if (errorCode == MySqlErrorCode.None)
|
||||
@@ -87,7 +87,7 @@ namespace Framework.Database
|
||||
{
|
||||
public TransactionWithResultTask(SQLTransaction trans) : base(trans) { }
|
||||
|
||||
public new bool Execute<T>(MySqlBase<T> mySqlBase)
|
||||
public override bool Execute<T>(MySqlBase<T> mySqlBase)
|
||||
{
|
||||
MySqlErrorCode errorCode = TryExecute(mySqlBase);
|
||||
if (errorCode == MySqlErrorCode.None)
|
||||
|
||||
Reference in New Issue
Block a user