fix: don't give VorBoltRemoverFakeItem when claiming recipe #1494

Merged
Sainan merged 1 commits from vor-bolt-remover into main 2025-04-06 10:19:35 -07:00

View File

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