Skip to content

Commit

Permalink
fix beast health in prescience
Browse files Browse the repository at this point in the history
  • Loading branch information
starknetdev committed Sep 5, 2024
1 parent 727bb27 commit 5c710f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/app/lib/utils/processFutures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,8 @@ function getBeastHealth(level: bigint, seed: bigint): bigint {
health += BigInt(10);
}

if (health > 511) {
return BigInt(511);
if (health > 1023) {
return BigInt(1023);
} else {
return health;
}
Expand Down

0 comments on commit 5c710f6

Please sign in to comment.