BFA Update (still lots of testing to do tho)

This commit is contained in:
hondacrx
2018-12-10 12:46:25 -05:00
parent 468b053946
commit 8e20114e10
256 changed files with 35613 additions and 10459 deletions
@@ -148,9 +148,17 @@ namespace Game.Network.Packets
bool hasGuildInfo = _worldPacket.HasBit();
bool hasLFGListSearchResult = _worldPacket.HasBit();
bool hasLFGListApplicant = _worldPacket.HasBit();
bool hasClubMessage = _worldPacket.HasBit();
_worldPacket.ResetBitPos();
if (hasClubMessage)
{
CommunityMessage.HasValue = true;
CommunityMessage.Value.IsPlayerUsingVoice = _worldPacket.HasBit();
_worldPacket.ResetBitPos();
}
if (hasMailInfo)
{
MailInfo.HasValue = true;
@@ -201,6 +209,7 @@ namespace Game.Network.Packets
public Optional<SupportTicketGuildInfo> GuildInfo;
public Optional<SupportTicketLFGListSearchResult> LFGListSearchResult;
public Optional<SupportTicketLFGListApplicant> LFGListApplicant;
public Optional<SupportTicketCommunityMessage> CommunityMessage;
public struct SupportTicketChatLine
{
@@ -352,6 +361,11 @@ namespace Game.Network.Packets
RideTicket RideTicket;
string Comment;
}
public struct SupportTicketCommunityMessage
{
public bool IsPlayerUsingVoice;
}
}
class Complaint : ClientPacket