Skip to content

Commit

Permalink
okay not that lucky
Browse files Browse the repository at this point in the history
  • Loading branch information
brain-frog committed Jun 5, 2024
1 parent 6d71db0 commit b532a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/field/arena.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class Arena {
// luck influences encounter rarity
let luckModifier = 0;
if (typeof luckValue !== "undefined") {
luckModifier = luckValue * (isBoss ? 2 : 0.5);
luckModifier = luckValue * (isBoss ? 0.5 : 2);
}
const tierValue = Utils.randSeedInt(randVal - luckModifier);
let tier = !isBoss
Expand Down

0 comments on commit b532a6b

Please sign in to comment.