From 9634bef7fc9d1bcca1b761c9de562a4df66d1b9b Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Sun, 17 Sep 2017 21:33:58 -0400 Subject: [PATCH] Identify Stackable and Lore in OP_AdventureMerchantResponse Thanks eqmule! --- zone/client_packet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index b72760e4f..733250700 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -2139,8 +2139,8 @@ void Client::Handle_OP_AdventureMerchantRequest(const EQApplicationPacket *app) ss << item->ID << "|"; ss << item->LDoNPrice << "|"; ss << theme << "|"; - ss << "0|"; - ss << "1|"; + ss << (item->Stackable ? 1 : 0) << "|"; + ss << (item->LoreFlag ? 1 : 0) << "|"; ss << item->Races << "|"; ss << item->Classes; count++;