diff --git a/src/routes/calculator/_character.svelte b/src/routes/calculator/_character.svelte index 88bbba71..37cbdc68 100644 --- a/src/routes/calculator/_character.svelte +++ b/src/routes/calculator/_character.svelte @@ -84,6 +84,7 @@ $: currentLevel, updateMinAscension(); $: intendedLevel, updateMinIntendedAscension(); $: intendedAscension, updateMaxTalentLevel(); + $: withAscension, checkWithTalent(); $: canCalculate = (withAscension ? selectedCharacter !== null : true) && @@ -96,6 +97,12 @@ intendedLevel > 0 && intendedLevel <= 90; + function checkWithTalent() { + if (!withAscension) { + withTalent = false; + } + } + function updateIntendedAscension() { intendedAscension = Math.max(currentAscension, intendedAscension); }