diff options
Diffstat (limited to 'src/game/Item.cpp')
-rw-r--r-- | src/game/Item.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/game/Item.cpp b/src/game/Item.cpp index eaf4ed776e7..217013e8e22 100644 --- a/src/game/Item.cpp +++ b/src/game/Item.cpp @@ -1059,16 +1059,7 @@ void Item::SaveRefundDataToDB() ss << GetGUIDLow() << ","; ss << RefundData->eligibleFor << ","; ss << RefundData->paidMoney << ","; - ss << RefundData->paidHonorPoints << ","; - ss << RefundData->paidArenaPoints << ","; - - for (uint8 i=0; i<5; ++i) - { - ss << RefundData->paidItemId[i] << ","; - ss << RefundData->paidItemCount[i]; - if (i < 4) - ss << ","; - } + ss << RefundData->paidExtendedCost; ss << ")"; CharacterDatabase.Execute(ss.str().c_str()); |