diff --git a/ui/src/app/lib/utils/processFutures.ts b/ui/src/app/lib/utils/processFutures.ts index 1b7718e36..ba29b1088 100644 --- a/ui/src/app/lib/utils/processFutures.ts +++ b/ui/src/app/lib/utils/processFutures.ts @@ -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; }