diff --git a/src/controllers/api/claimCompletedRecipeController.ts b/src/controllers/api/claimCompletedRecipeController.ts index 880b2267..09953901 100644 --- a/src/controllers/api/claimCompletedRecipeController.ts +++ b/src/controllers/api/claimCompletedRecipeController.ts @@ -127,7 +127,10 @@ export const claimCompletedRecipeController: RequestHandler = async (req, res) = ...updateCurrency(inventory, cost, true) }; } - if (recipe.secretIngredientAction != "SIA_UNBRAND") { + if ( + recipe.resultType != "/Lotus/Types/Recipes/Components/VorBoltRemoverFakeItem" && + recipe.secretIngredientAction != "SIA_UNBRAND" + ) { InventoryChanges = { ...InventoryChanges, ...(await addItem(inventory, recipe.resultType, recipe.num, false))