diff --git a/src/constants/pet-stats.js b/src/constants/pet-stats.js index 98c966f6a6..85d48a095c 100644 --- a/src/constants/pet-stats.js +++ b/src/constants/pet-stats.js @@ -41,7 +41,8 @@ function getValue(rarity, data) { case MYTHIC: return mythic; default: - throw new Error("Unknown rarity"); + console.log(`Unknown rarity: ${rarity}`); + // throw new Error("Unknown rarity"); } }