Core/Trade: Fixed enchanting soulbound items in trade

Closes #12850
This commit is contained in:
Shauren
2014-09-18 21:15:39 +02:00
parent ad49bd5194
commit 31656c0213

View File

@@ -761,7 +761,7 @@ void WorldSession::HandleSetTradeItemOpcode(WorldPacket& recvPacket)
return;
}
if (slot != TRADE_SLOT_NONTRADED && item->IsBindedNotWith(my_trade->GetTrader()))
if (tradeSlot != TRADE_SLOT_NONTRADED && item->IsBindedNotWith(my_trade->GetTrader()))
{
info.Status = TRADE_STATUS_NOT_ON_TAPLIST;
info.Slot = tradeSlot;