diff --git a/src/app/(stats)/player/[ign]/_stats/duels/duels.tsx b/src/app/(stats)/player/[ign]/_stats/duels/duels.tsx
index 8a26c49..b2769e8 100644
--- a/src/app/(stats)/player/[ign]/_stats/duels/duels.tsx
+++ b/src/app/(stats)/player/[ign]/_stats/duels/duels.tsx
@@ -68,7 +68,8 @@ export default function DuelsStats({ stats }: { stats: NonNullStats["Duels"] })
-
+
+
diff --git a/src/app/(stats)/player/[ign]/_stats/duels/stats.tsx b/src/app/(stats)/player/[ign]/_stats/duels/stats.tsx
index 503362f..77ac316 100644
--- a/src/app/(stats)/player/[ign]/_stats/duels/stats.tsx
+++ b/src/app/(stats)/player/[ign]/_stats/duels/stats.tsx
@@ -5,7 +5,9 @@ import { NonNullStats } from "@/lib/schema/player"
import { cn } from "@/lib/utils"
import { BasicStat } from "../../_components/Stats"
-export default function DuelsGeneralStats({ statsChecked, div, kd }: { statsChecked: NonNullStats["Duels"], div: Div | null, kd: number }) {
+export default function DuelsGeneralStats(
+ { statsChecked, div, kd, wl }: { statsChecked: NonNullStats["Duels"], div: Div | null, kd: number, wl: number }
+) {
const stats = statsChecked!
return (
@@ -34,6 +36,23 @@ export default function DuelsGeneralStats({ statsChecked, div, kd }: { statsChec
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
)
diff --git a/src/lib/schema/stats.ts b/src/lib/schema/stats.ts
index 00bf6eb..c9b3936 100644
--- a/src/lib/schema/stats.ts
+++ b/src/lib/schema/stats.ts
@@ -277,6 +277,10 @@ export const duelsStatsSchema = z.looseObject({
deaths: z.number().default(0),
melee_swings: z.number().default(0),
melee_hits: z.number().default(0),
+ bow_shots: z.number().default(0),
+ bow_hits: z.number().default(0),
+ current_winstreak: z.number().optional(),
+ best_overall_winstreak: z.number().optional(),
//
all_modes_rookie_title_prestige: z.number().default(-1),
all_modes_iron_title_prestige: z.number().default(-1),