Core/Guilds: Restore guild bank contents hack

Port From (https://github.com/TrinityCore/TrinityCore/commit/125bd632b3b6a47879d2d6f146d08f980950942d)
This commit is contained in:
hondacrx
2022-01-07 12:51:07 -05:00
parent da3895b215
commit 9f62d55af7
+4 -1
View File
@@ -258,7 +258,10 @@ namespace Game
{
Guild guild = GetPlayer().GetGuild();
if (guild)
guild.SendBankList(this, packet.Tab, packet.FullUpdate);
guild.SendBankList(this, packet.Tab, true/*packet.FullUpdate*/);
// HACK: client doesn't query entire tab content if it had received SMSG_GUILD_BANK_LIST in this session
// but we broadcast bank updates to entire guild when *ANYONE* changes anything, incorrectly initializing clients
// tab content with only data for that change
}
}