diff --git a/common/img/sprites/spritesmith/skills/shop_heallAll.png b/common/img/sprites/spritesmith/skills/shop_healAll.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_heallAll.png rename to common/img/sprites/spritesmith/skills/shop_healAll.png diff --git a/common/script/content/spells.js b/common/script/content/spells.js index a4632dbea4..9309210af7 100644 --- a/common/script/content/spells.js +++ b/common/script/content/spells.js @@ -239,7 +239,7 @@ spells.healer = { }); }, }, - heallAll: { // Blessing + healAll: { // Blessing text: t('spellHealerHealAllText'), mana: 25, lvl: 14, diff --git a/website/server/controllers/api-v2/user.js b/website/server/controllers/api-v2/user.js index 323155a5bd..b64f8e755a 100644 --- a/website/server/controllers/api-v2/user.js +++ b/website/server/controllers/api-v2/user.js @@ -635,6 +635,10 @@ api.cast = async function(req, res, next) { let spellId = req.params.spell; let targetId = req.query.targetId; + if (spellId === 'heallAll') { + spellId = 'healAll'; + } + let klass = shared.content.spells.special[spellId] ? 'special' : user.stats.class; let spell = shared.content.spells[klass][spellId];