diff --git a/src/types.ts b/src/types.ts index 714e41f..6940ced 100644 --- a/src/types.ts +++ b/src/types.ts @@ -582,7 +582,7 @@ export class Internal { for (const key in fixedArg) { if (!name.includes('guild') && key.endsWith('_id')) { const value = +fixedArg[key] - if (BigInt(Math.abs(value)) < 1n << 32n) { + if (Math.abs(value) < 4294967296) { fixedArg[key] = value } }