From f60b22a633acc1c42efe149558f8c0aa92ebba73 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Mon, 9 Feb 2026 22:59:05 -0800 Subject: [PATCH] Fix SMSG_QUESTGIVER_QUEST_COMPLETE opcode value Corrected opcode from 0x191 to 0x18F for WoW 3.3.5a. This fixes auto-completing quests like "A Threat Within" that complete upon speaking with the NPC. --- include/game/opcodes.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/game/opcodes.hpp b/include/game/opcodes.hpp index 0e5f0f0b..9127c1c7 100644 --- a/include/game/opcodes.hpp +++ b/include/game/opcodes.hpp @@ -220,7 +220,7 @@ enum class Opcode : uint16_t { CMSG_QUESTGIVER_REQUEST_REWARD = 0x18C, SMSG_QUESTGIVER_OFFER_REWARD = 0x18D, CMSG_QUESTGIVER_CHOOSE_REWARD = 0x18E, - SMSG_QUESTGIVER_QUEST_COMPLETE = 0x191, + SMSG_QUESTGIVER_QUEST_COMPLETE = 0x18F, CMSG_QUESTLOG_REMOVE_QUEST = 0x194, // ---- Phase 5: Vendor ----