Skip to content

Commit

Permalink
replace tier order
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzn committed Nov 6, 2024
1 parent a56c5fd commit 7a049a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/models/status/round/beast.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -328,15 +328,15 @@ fn _generate_stats(level: u8, beast_id: u32, ref randomizer: Random) -> (u8, u32
fn _obtain_random_tier(ref randomizer: Random) -> u8 {
let random = randomizer.between::<u32>(1, 100);
if random <= 40 {
1
5
} else if random <= 70 {
2
4
} else if random <= 85 {
3
} else if random <= 95 {
4
2
} else {
5
1
}
}

Expand Down

0 comments on commit 7a049a3

Please sign in to comment.