diff --git a/src/lib/game/crafting-actions/crafting-material-actions.ts b/src/lib/game/crafting-actions/crafting-material-actions.ts index b6bc96f..92a5ade 100644 --- a/src/lib/game/crafting-actions/crafting-material-actions.ts +++ b/src/lib/game/crafting-actions/crafting-material-actions.ts @@ -2,7 +2,6 @@ // Separate file to avoid exceeding the 400-line limit in craftingStore.ts. import { useManaStore } from '../stores/manaStore'; -import { useCombatStore } from '../stores/combatStore'; import { useUIStore } from '../stores/uiStore'; import { getFabricatorRecipe, @@ -19,9 +18,6 @@ export function craftMaterial( recipeId: string, lootInventoryMaterials: Record, ): CraftMaterialResult { - const currentAction = useCombatStore.getState().currentAction; - if (currentAction !== 'meditate') return { success: false }; - const recipe = getFabricatorRecipe(recipeId); if (!recipe || recipe.recipeType !== 'material') return { success: false }; if (!recipe.resultMaterial || !recipe.resultAmount) return { success: false };