diff --git a/src/lib/hypixel/woolgames/general.ts b/src/lib/hypixel/woolgames/general.ts index 594a8c9..58e258f 100644 --- a/src/lib/hypixel/woolgames/general.ts +++ b/src/lib/hypixel/woolgames/general.ts @@ -1,16 +1,7 @@ import { CLASSES, DIFFICULTIES, EASY_XP, ICONS, NORMAL_XP, PRESTIGES } from "@/data/hypixel/woolgames" import { getColorFromCode } from "@/lib/colors" -import { NonNullStats } from "@/lib/schema/player" import { floorLevel } from "../general" -export function getWoolGamesWoolWarsClassStats( - classId: typeof CLASSES[number]["id"], - { stats }: NonNullable["wool_wars"]> -) { - const id = classId.toLowerCase() - return [] -} - export function getWoolGamesWoolWarsClass(val?: string) { const klass = CLASSES.find(c => c.id === val?.toLowerCase()) return klass || null