aboutsummaryrefslogtreecommitdiff
path: root/src/api/Commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/Commands')
-rw-r--r--src/api/Commands/commandHelpers.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/api/Commands/commandHelpers.ts b/src/api/Commands/commandHelpers.ts
index d363d6e..dd1196f 100644
--- a/src/api/Commands/commandHelpers.ts
+++ b/src/api/Commands/commandHelpers.ts
@@ -17,7 +17,8 @@
*/
import { mergeDefaults } from "@utils/misc";
-import { findByCodeLazy, findByPropsLazy, waitFor } from "@webpack";
+import { findByCodeLazy, findByPropsLazy } from "@webpack";
+import { SnowflakeUtils } from "@webpack/common";
import { Message } from "discord-types/general";
import type { PartialDeep } from "type-fest";
@@ -26,9 +27,6 @@ import { Argument } from "./types";
const createBotMessage = findByCodeLazy('username:"Clyde"');
const MessageSender = findByPropsLazy("receiveMessage");
-let SnowflakeUtils: any;
-waitFor("fromTimestamp", m => SnowflakeUtils = m);
-
export function generateId() {
return `-${SnowflakeUtils.fromTimestamp(Date.now())}`;
}