fix Zaubern EW display in spell

Changes:
 + fix Zaubern EW display in spell list
This commit is contained in:
Byroks 2023-11-19 21:13:29 +01:00
parent d9e7152b4d
commit e85fd1c41f
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ export class M5Item extends Item {
if (actor) { if (actor) {
const actorCalc = character.derivedData({ weapons: true, defensiveWeapons: true, armor: true, items: true, spells: true }); const actorCalc = character.derivedData({ weapons: true, defensiveWeapons: true, armor: true, items: true, spells: true });
if (actorCalc) { if (actorCalc) {
calc.ew += actorCalc.stats.spellCasting.value; calc.ew = actorCalc.stats.spellCasting.value;
} }
} }
} else if (itemType === "item") { } else if (itemType === "item") {