enefel 1.0.108 → 1.0.109

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/skill.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "enefel",
3
- "version": "1.0.108",
3
+ "version": "1.0.109",
4
4
  "main": "index.js",
5
5
  "author": "Manest",
6
6
  "license": "MIT",
package/skill.js CHANGED
@@ -196,7 +196,7 @@ function hasSkill(
196
196
 
197
197
  const isActivated = (skill) =>
198
198
  checkActivated && isActivableSkills(skillId)
199
- ? skill.info == null || skill.info === SKILL_INFO_ACTIVE
199
+ ? skill.active == null || skill.active === SKILL_INFO_ACTIVE
200
200
  ? true
201
201
  : false
202
202
  : true;