This commit is contained in:
2025-09-07 22:51:55 +02:00
parent fbfd8b8bbc
commit fdd442115e
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ import Multicolored from "../../_components/Multicolored"
export function BedwarsLevel({ xp }: { xp: number }) {
const level = getBWLevelForExp(xp)
const color = getPrestige(level).color
const color = getPrestige(level).colormap
const star = getBedwarsStar(level)
const val = `[${level}${star}]`

View File

@@ -79,7 +79,7 @@ export function getPrestige(level: number) {
}
}
if (floored < 1000) {
if (level >= 1000) {
const pres = PRESTIGES.find(p => p.level === floored)!
return {
color: pres.color,