From 5e821ca6415fc79bb922454629a7f9aeafb6136e Mon Sep 17 00:00:00 2001 From: Jerom Venneker Date: Mon, 2 Jun 2025 20:21:17 +0200 Subject: [PATCH] Fixed items from other games not scouting and recieving right --- soh/soh/Network/Archipelago/Archipelago.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soh/soh/Network/Archipelago/Archipelago.cpp b/soh/soh/Network/Archipelago/Archipelago.cpp index 4b9abb94f..87b101162 100644 --- a/soh/soh/Network/Archipelago/Archipelago.cpp +++ b/soh/soh/Network/Archipelago/Archipelago.cpp @@ -83,7 +83,7 @@ bool ArchipelagoClient::StartClient() { for(const APClient::NetworkItem& item : items) { ApItem apItem; const std::string game = apClient->get_player_game(item.player); - apItem.itemName = apClient->get_item_name(item.item, game); + apItem.itemName = apClient->get_item_name(item.item, AP_Client_consts::AP_GAME_NAME); apItem.locationName = apClient->get_location_name(item.location, game); apItem.playerName = apClient->get_player_alias(item.player); apItem.flags = item.flags; @@ -103,7 +103,7 @@ bool ArchipelagoClient::StartClient() { ApItem apItem; const std::string game = apClient->get_player_game(item.player); apItem.itemName = apClient->get_item_name(item.item, game); - apItem.locationName = apClient->get_location_name(item.location, game); + apItem.locationName = apClient->get_location_name(item.location, AP_Client_consts::AP_GAME_NAME); apItem.playerName = apClient->get_player_alias(item.player); apItem.flags = item.flags; apItem.index = item.index;