Skip to content

Commit

Permalink
Update elite.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
TastyPumPum authored Nov 8, 2024
1 parent de42566 commit 1e2ab17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/combat_achievements/elite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,8 @@ export const eliteCombatAchievements: CombatAchievement[] = [
rng: {
chancePerKill: 12,
hasChance: (data, _user, index) =>
data.type === 'Colosseum' && (!data.diedAt || (Array.isArray(data.diedAt) && data.diedAt[index]! > 7))
data.type === 'Colosseum' &&
(!data.diedAt || (Array.isArray(data.diedAt) && (!data.diedAt[index] || data.diedAt[index] > 7)))
}
},
{
Expand Down

0 comments on commit 1e2ab17

Please sign in to comment.