From cb69093317afa974ce5c12262dc19712a4a89449 Mon Sep 17 00:00:00 2001 From: Ludovic Marechal Date: Wed, 15 Mar 2023 22:59:52 +0100 Subject: [PATCH] Change item_handling to support start_inventory --- archipelago-client/ArchipelagoInterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archipelago-client/ArchipelagoInterface.cpp b/archipelago-client/ArchipelagoInterface.cpp index 47eed11..70fc20f 100644 --- a/archipelago-client/ArchipelagoInterface.cpp +++ b/archipelago-client/ArchipelagoInterface.cpp @@ -82,7 +82,7 @@ BOOL CArchipelago::Initialise(std::string URI) { ap->set_room_info_handler([]() { std::list tags; if (GameHook->dIsDeathLink) { tags.push_back("DeathLink"); } - ap->ConnectSlot(Core->pSlotName, Core->pPassword, 1, tags, { 0,3,7 }); + ap->ConnectSlot(Core->pSlotName, Core->pPassword, 5, tags, { 0,3,7 }); }); ap->set_items_received_handler([](const std::list& items) { @@ -121,7 +121,7 @@ BOOL CArchipelago::Initialise(std::string URI) { } } if (address == 0) { - std::cout << "items_received_handler " << itemname.c_str() << " not found" << "\n"; + std::cout << "The " << itemname.c_str() << " has not been found in the item pool. Please check your seed options" << "\n"; return; }