fix(Core/Packets): sending item's random property in a few packets (#6193)

- Closes #4843
This commit is contained in:
UltraNix
2021-06-15 12:37:58 +02:00
committed by GitHub
parent 34da0cda51
commit 0d96866cea
3 changed files with 5 additions and 5 deletions

View File

@@ -105,7 +105,7 @@ void WorldSession::SendUpdateTrade(bool trader_data /*= true*/)
data << item->GetGuidValue(ITEM_FIELD_CREATOR);
data << uint32(item->GetSpellCharges()); // charges
data << uint32(item->GetItemSuffixFactor()); // SuffixFactor
data << uint32(item->GetItemRandomPropertyId());// random properties id
data << int32(item->GetItemRandomPropertyId()); // random properties id
data << uint32(item->GetTemplate()->LockID); // lock id
// max durability
data << uint32(item->GetUInt32Value(ITEM_FIELD_MAXDURABILITY));