IgnoreList: Add and Populate fully working

This commit is contained in:
David Markowitz
2023-11-18 03:55:12 -08:00
parent 8e84cafdfa
commit df3515f474
5 changed files with 153 additions and 1 deletions

View File

@@ -19,6 +19,7 @@
#include "eChatMessageType.h"
#include "eChatInternalMessageType.h"
#include "eWorldMessageType.h"
#include "ChatIgnoreList.h"
#include "Game.h"
@@ -234,7 +235,11 @@ void HandlePacket(Packet* packet) {
break;
case eChatMessageType::GET_IGNORE_LIST:
LOG("Asked for ignore list, but is unimplemented right now.");
ChatIgnoreList::GetIgnoreList(packet);
break;
case eChatMessageType::ADD_IGNORE:
ChatIgnoreList::AddIgnore(packet);
break;
case eChatMessageType::TEAM_GET_STATUS: