fix(Core/Packets): Display item suffixes in guild bank packet. (#10200)

Fixes #9997
This commit is contained in:
UltraNix 2022-01-16 14:33:01 +01:00 committed by GitHub
parent a97719fe23
commit c8a5ece0c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2810,6 +2810,8 @@ void Guild::_SendBankList(WorldSession* session /* = nullptr*/, uint8 tabId /*=
itemInfo.Charges = int32(std::abs(tabItem->GetSpellCharges()));
itemInfo.EnchantmentID = int32(tabItem->GetEnchantmentId(PERM_ENCHANTMENT_SLOT));
itemInfo.Flags = tabItem->GetInt32Value(ITEM_FIELD_FLAGS);
itemInfo.RandomPropertiesID = tabItem->GetItemRandomPropertyId();
itemInfo.RandomPropertiesSeed = int32(tabItem->GetItemSuffixFactor());
for (uint32 socketSlot = 0; socketSlot < MAX_GEM_SOCKETS; ++socketSlot)
{