From f2eabc87ef0fdb2f0b6858b35eb8e5fedb0ad708 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Mon, 9 Mar 2026 16:26:31 -0700 Subject: [PATCH] Add notification for SMSG_BINDER_CONFIRM (innkeeper bind set) SMSG_BINDER_CONFIRM confirms the bind point was set. Previously silently consumed; now shows "This innkeeper is now your home location." in system chat so the player gets feedback after using an innkeeper. --- src/game/game_handler.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game/game_handler.cpp b/src/game/game_handler.cpp index f04ab41b..dca53220 100644 --- a/src/game/game_handler.cpp +++ b/src/game/game_handler.cpp @@ -1850,7 +1850,8 @@ void GameHandler::handlePacket(network::Packet& packet) { break; } case Opcode::SMSG_BINDER_CONFIRM: { - // uint64 npcGuid — server asking client to confirm bind at innkeeper + // uint64 npcGuid — server confirming bind point has been set + addSystemChatMessage("This innkeeper is now your home location."); packet.setReadPos(packet.getSize()); break; }