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.
This commit is contained in:
Kelsi 2026-03-09 16:26:31 -07:00
parent 68bf3d32b0
commit f2eabc87ef

View file

@ -1850,7 +1850,8 @@ void GameHandler::handlePacket(network::Packet& packet) {
break; break;
} }
case Opcode::SMSG_BINDER_CONFIRM: { 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()); packet.setReadPos(packet.getSize());
break; break;
} }