duhhhhhhhh

This commit is contained in:
2025-09-11 13:47:30 -04:00
parent eef3667618
commit 317da3aaf7
53 changed files with 1395 additions and 212 deletions

View File

@@ -6,7 +6,7 @@ export class PlayerSocketSubscriptionTarget extends SocketTarget {
#ids: number[] = [];
override zod = z.object({
PlayerIds: z.array(z.number().nonnegative().max(2_147_483_647))
PlayerIds: z.array(z.number().nonnegative().max(Math.pow(2, 31)))
});
override exec(...ids: number[]) {