diff --git a/scripts/hv-unified.user.js b/scripts/hv-unified.user.js index 1d50e23..3c0defc 100644 --- a/scripts/hv-unified.user.js +++ b/scripts/hv-unified.user.js @@ -679,7 +679,7 @@ function shouldBuff(name, minTurns) { const BUFF_PRIORITY = [ { icon: 'haste', spell: 'Haste', minTurns: 2 }, { icon: 'protection', spell: 'Protection', minTurns: 2 }, - { icon: 'fallenshield', spell: 'Spark of Life', minTurns: 1 }, // icon: fallenshield.png + { icon: 'sparklife', spell: 'Spark of Life', minTurns: 1 }, // icon: sparklife.png { icon: 'regen', spell: 'Regen', minTurns: 2 }, { icon: 'absorb', spell: 'Absorb', minTurns: 2 }, { icon: 'shadowveil', spell: 'Shadow Veil', minTurns: 3 }, diff --git a/scripts/latest.user.js b/scripts/latest.user.js index 1d50e23..3c0defc 100644 --- a/scripts/latest.user.js +++ b/scripts/latest.user.js @@ -679,7 +679,7 @@ function shouldBuff(name, minTurns) { const BUFF_PRIORITY = [ { icon: 'haste', spell: 'Haste', minTurns: 2 }, { icon: 'protection', spell: 'Protection', minTurns: 2 }, - { icon: 'fallenshield', spell: 'Spark of Life', minTurns: 1 }, // icon: fallenshield.png + { icon: 'sparklife', spell: 'Spark of Life', minTurns: 1 }, // icon: sparklife.png { icon: 'regen', spell: 'Regen', minTurns: 2 }, { icon: 'absorb', spell: 'Absorb', minTurns: 2 }, { icon: 'shadowveil', spell: 'Shadow Veil', minTurns: 3 }, diff --git a/src/strategy-engine.js b/src/strategy-engine.js index 6320e4b..1b3021b 100644 --- a/src/strategy-engine.js +++ b/src/strategy-engine.js @@ -34,7 +34,7 @@ function shouldBuff(name, minTurns) { const BUFF_PRIORITY = [ { icon: 'haste', spell: 'Haste', minTurns: 2 }, { icon: 'protection', spell: 'Protection', minTurns: 2 }, - { icon: 'fallenshield', spell: 'Spark of Life', minTurns: 1 }, // icon: fallenshield.png + { icon: 'sparklife', spell: 'Spark of Life', minTurns: 1 }, // icon: sparklife.png { icon: 'regen', spell: 'Regen', minTurns: 2 }, { icon: 'absorb', spell: 'Absorb', minTurns: 2 }, { icon: 'shadowveil', spell: 'Shadow Veil', minTurns: 3 },