1 files changed, 1 insertions, 2 deletions
diff --git a/src/bundle/Server.ts b/src/bundle/Server.ts
index 9ba715d1..1ae9511c 100644
--- a/src/bundle/Server.ts
+++ b/src/bundle/Server.ts
@@ -7,7 +7,7 @@ import * as Gateway from "@fosscord/gateway";
import { CDNServer } from "@fosscord/cdn";
import express from "express";
import { green, bold, yellow } from "picocolors";
-import { Config, initDatabase, BannedWords } from "@fosscord/util";
+import { Config, initDatabase } from "@fosscord/util";
import * as Sentry from "@sentry/node";
import * as Tracing from "@sentry/tracing";
import * as Integrations from "@sentry/integrations";
@@ -30,7 +30,6 @@ process.on("SIGTERM", async () => {
async function main() {
await initDatabase();
await Config.init();
- await BannedWords.init();
//Sentry
if (Config.get().sentry.enabled) {
|