Updated to 8.2.0.31429 (scripts disabled atm, they still need updated)

Code Port from TrinityCore https://github.com/TrinityCore/TrinityCore
Casc from WoW-Tools https://github.com/WoW-Tools/CASCExplorer
This commit is contained in:
hondacrx
2019-08-14 11:20:42 -04:00
parent e4d500f4b5
commit 125e3b3ac7
232 changed files with 12268 additions and 14670 deletions
+5 -2
View File
@@ -189,7 +189,7 @@ namespace Game
Guild.EmblemInfo emblemInfo = new Guild.EmblemInfo();
emblemInfo.ReadPacket(packet);
if (GetPlayer().GetNPCIfCanInteractWith(packet.Vendor, NPCFlags.TabardDesigner))
if (GetPlayer().GetNPCIfCanInteractWith(packet.Vendor, NPCFlags.TabardDesigner, NPCFlags2.None))
{
// Remove fake death
if (GetPlayer().HasUnitState(UnitState.Died))
@@ -395,7 +395,10 @@ namespace Game
[WorldPacketHandler(ClientOpcodes.DeclineGuildInvites)]
void HandleDeclineGuildInvites(DeclineGuildInvites packet)
{
GetPlayer().ApplyModFlag(PlayerFields.Flags, PlayerFlags.AutoDeclineGuild, packet.Allow);
if (packet.Allow)
GetPlayer().AddPlayerFlag(PlayerFlags.AutoDeclineGuild);
else
GetPlayer().RemovePlayerFlag(PlayerFlags.AutoDeclineGuild);
}
[WorldPacketHandler(ClientOpcodes.RequestGuildRewardsList, Processing = PacketProcessing.Inplace)]