fix: correct ENCHANTMENT_SPELLS import path in combat-damage.ts
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m25s

This commit is contained in:
2026-06-11 12:43:33 +02:00
parent 048ffa6ab1
commit ae8d669c71
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
// ─── Per-Enemy Damage Application (spec §3.2) ─────────────────────────────────
// Extracted from combat-actions.ts to stay under the 400-line file limit.
import { ENCHANTMENT_EFFECTS, ENCHANTMENT_SPELLS } from '../data/enchantment-effects';
import { ENCHANTMENT_EFFECTS } from '../data/enchantment-effects';
import { ENCHANTMENT_SPELLS } from '../constants/spells';
import { canAffordSpellCost, deductSpellCost } from '../utils';
import type { CombatStore, CombatState } from './combat-state.types';
import type { EnemyState, EquipmentInstance } from '../types';