diff --git a/src/app/(stats)/player/[ign]/_stats/pit/pit.tsx b/src/app/(stats)/player/[ign]/_stats/pit/pit.tsx index b593951..096748f 100644 --- a/src/app/(stats)/player/[ign]/_stats/pit/pit.tsx +++ b/src/app/(stats)/player/[ign]/_stats/pit/pit.tsx @@ -33,7 +33,8 @@ export default function PitStats({ stats }: { stats: NonNullStats["Pit"] }) {

[ {prestige > 0 && {romanize(prestige)}} - {`${prestige === 0 ? "" : "-"}${level}`} + {prestige > 0 && -} + {level} ]

) diff --git a/src/data/hypixel/bedwars.ts b/src/data/hypixel/bedwars.ts index 8fc5c92..32e6cb6 100644 --- a/src/data/hypixel/bedwars.ts +++ b/src/data/hypixel/bedwars.ts @@ -1,4 +1,3 @@ -export const TITLE = "Bed Wars" as const export const PRESTIGES = [ { level: 0, colormap: "7", color: "gray", name: "None" }, { level: 100, colormap: "f", color: "white", name: "Iron" }, diff --git a/src/data/hypixel/build-battle.ts b/src/data/hypixel/build-battle.ts index e89a1a6..5273b4a 100644 --- a/src/data/hypixel/build-battle.ts +++ b/src/data/hypixel/build-battle.ts @@ -1,4 +1,3 @@ -export const TITLE = "Build Battle" as const export const MODES = [ { id: "solo_normal", name: "Solo" }, { id: "teams_normal", name: "Teams" }, diff --git a/src/data/hypixel/duels.ts b/src/data/hypixel/duels.ts index 9e95f7c..ac05dc2 100644 --- a/src/data/hypixel/duels.ts +++ b/src/data/hypixel/duels.ts @@ -1,4 +1,3 @@ -export const TITLE = "Duels" as const export const DIVISIONS = [ { name: "Rookie", id: "rookie", color: "dark-gray", style: "§8" }, { name: "Iron", id: "iron", color: "white", style: "§f" }, diff --git a/src/data/hypixel/murder-mystery.ts b/src/data/hypixel/murder-mystery.ts index 08af9f5..f93e293 100644 --- a/src/data/hypixel/murder-mystery.ts +++ b/src/data/hypixel/murder-mystery.ts @@ -1,4 +1,3 @@ -export const TITLE = "Murder Mystery" as const export const MODES = [ { id: "MURDER_CLASSIC", name: "Classic" }, { id: "MURDER_ASSASSINS", name: "Assassins" }, diff --git a/src/data/hypixel/pit.ts b/src/data/hypixel/pit.ts index c0999cd..a465b7e 100644 --- a/src/data/hypixel/pit.ts +++ b/src/data/hypixel/pit.ts @@ -1,6 +1,3 @@ -export const TITLE = "Pit" as const -export const MAXPRESTIGE = 40 as const -export const MAXLEVEL = 120 as const export const PRESTIGE_MULTIPLIERS = [ { "Multiplier": 1, "SumXp": 65950 }, { "Multiplier": 1.1, "SumXp": 138510 }, @@ -94,5 +91,8 @@ export const PRESTIGECOLORS = [ { prestige: 25, color: "light-purple" }, { prestige: 30, color: "white" }, { prestige: 35, color: "aqua" }, - { prestige: 40, color: "dark-blue" } + { prestige: 40, color: "dark-blue" }, + { prestige: 45, color: "black" }, + { prestige: 48, color: "dark-red" }, + { prestige: 48, color: "dark-gray" } ] as const diff --git a/src/data/hypixel/skywars.ts b/src/data/hypixel/skywars.ts index 039661d..39a66b4 100644 --- a/src/data/hypixel/skywars.ts +++ b/src/data/hypixel/skywars.ts @@ -1,4 +1,3 @@ -export const TITLE = "SkyWars" as const export const INITIAL_XP = [0, 20, 70, 150, 250, 500, 1000, 2000, 3500, 6000, 10000, 15000] as const export const RECURRING_XP = 10000 as const diff --git a/src/data/hypixel/uhc.ts b/src/data/hypixel/uhc.ts index e4472a4..a976161 100644 --- a/src/data/hypixel/uhc.ts +++ b/src/data/hypixel/uhc.ts @@ -1,4 +1,3 @@ -export const TITLE = "UHC" as const export const MODES = [ { id: "solo", name: "Solo" }, { id: "", name: "Teams" },