From 759e8fc14211e67abca644f5b3800aedceaa5a43 Mon Sep 17 00:00:00 2001 From: Hank McCord Date: Mon, 16 Oct 2023 14:04:01 -0400 Subject: [PATCH] Add 'convertible' to spooky shuffle item map --- src/scripts/modules/ajax-handlers/spookyShuffle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/modules/ajax-handlers/spookyShuffle.ts b/src/scripts/modules/ajax-handlers/spookyShuffle.ts index 7ac5b48e..f85fa3ca 100644 --- a/src/scripts/modules/ajax-handlers/spookyShuffle.ts +++ b/src/scripts/modules/ajax-handlers/spookyShuffle.ts @@ -110,7 +110,7 @@ export class SpookyShuffleAjaxHandler extends AjaxSuccessHandler { async fetchItemNameToIdMap(): Promise> { // async fetch of all items that are of the same classification of the rewards in spooky shuffle - const itemArray = await hgFuncs.getItemsByClass(['bait', 'stat', 'trinket', 'crafting_item', 'potion'], true); + const itemArray = await hgFuncs.getItemsByClass(['bait', 'stat', 'trinket', 'crafting_item', 'potion', 'convertible'], true); const itemMap = itemArray.reduce((map: Record, item) => { map[item.name] = parseHgInt(item.item_id);