Skip to content

Commit

Permalink
Merge pull request #477 from Sehrentos/bugfix-equipment-isinequiplist
Browse files Browse the repository at this point in the history
bugfix added missing method isInEquipList as fallback compatibility
  • Loading branch information
MrAntares authored Sep 24, 2024
2 parents 4f91e28 + e10ba75 commit 9a24fa6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/UI/Components/Equipment/EquipmentV1/EquipmentV1.js
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,13 @@ define(function(require)
return num;
}

/**
* EquipmentV3 has the supported function. This is for compatibility with EquipmentV1
*/
EquipmentV1.isInEquipList = function() {
return 0;
}

/**
* Method to define
*/
Expand Down
7 changes: 7 additions & 0 deletions src/UI/Components/Equipment/EquipmentV2/EquipmentV2.js
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,13 @@ define(function(require)
return num;
}

/**
* EquipmentV3 has the supported function. This is for compatibility with EquipmentV2
*/
EquipmentV2.isInEquipList = function() {
return 0;
}

/**
* Method to define
*/
Expand Down

0 comments on commit 9a24fa6

Please sign in to comment.