diff --git a/src/util/Permissions.ts b/src/util/Permissions.ts
index 4627143a..e9dd6f4d 100644
--- a/src/util/Permissions.ts
+++ b/src/util/Permissions.ts
@@ -128,7 +128,7 @@ export class Permissions extends BitField {
// ~ operator inverts deny (e.g. 011 -> 100)
// & operator only allows 1 for both ~deny and permission (e.g. 010 & 100 -> 000)
// | operators adds both together (e.g. 000 + 100 -> 100)
- }, 0n ?? init);
+ }, init || 0n);
}
static rolePermission(roles: Role[]) {
diff --git a/src/util/Snowflake.ts b/src/util/Snowflake.ts
index 1ccae43c..add940f8 100644
--- a/src/util/Snowflake.ts
+++ b/src/util/Snowflake.ts
@@ -109,7 +109,7 @@ export class Snowflake {
static deconstruct(snowflake) {
const BINARY = Snowflake.idToBinary(snowflake).toString(2).padStart(64, "0");
const res = {
- timestamp: parseInt(BINARY.substring(0, 42), 2) + EPOCH,
+ timestamp: parseInt(BINARY.substring(0, 42), 2) + Snowflake.EPOCH,
workerID: parseInt(BINARY.substring(42, 47), 2),
processID: parseInt(BINARY.substring(47, 52), 2),
increment: parseInt(BINARY.substring(52, 64), 2),
|