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);