arrayify teaminfoschema players

This commit is contained in:
Kalle (Sendou)
2021-02-06 23:29:46 +02:00
parent 603156f611
commit 7173216223

View File

@@ -18,7 +18,7 @@ const playerSchema = z.object({
const teamInfoSchema = z.object({
score: z.number().int().min(0).max(100),
players: playerSchema,
players: z.array(playerSchema),
});
export const detailedMapSchema = z.array(