From 7bc00cb466f4d54c8348c0e49beeb0d1f609157a Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Sun, 19 Feb 2023 20:39:24 -0500 Subject: [PATCH] [Bug Fix] Fix OOCMute not functioning (#2970) # Notes - #oocmute was not functioning as the packet wasn't being handled by the server. --- world/zoneserver.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/world/zoneserver.cpp b/world/zoneserver.cpp index f3cd59092..ec098a492 100644 --- a/world/zoneserver.cpp +++ b/world/zoneserver.cpp @@ -1332,6 +1332,7 @@ void ZoneServer::HandleMessage(uint16 opcode, const EQ::Net::Packet &p) { case ServerOP_ItemStatus: case ServerOP_KickPlayer: case ServerOP_KillPlayer: + case ServerOP_OOCMute: case ServerOP_OOZGroupMessage: case ServerOP_Petition: case ServerOP_RaidGroupSay: