From 444e81569018a71a1e50deef37419c4a2b10f3ef Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Sat, 17 Dec 2022 18:45:42 +1100 Subject: Remove bad banned words implementation --- src/gateway/Server.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/gateway') diff --git a/src/gateway/Server.ts b/src/gateway/Server.ts index 8c416b92..7e1489be 100644 --- a/src/gateway/Server.ts +++ b/src/gateway/Server.ts @@ -1,7 +1,7 @@ import "missing-native-js-functions"; import dotenv from "dotenv"; dotenv.config(); -import { BannedWords, closeDatabase, Config, initDatabase, initEvent } from "@fosscord/util"; +import { closeDatabase, Config, initDatabase, initEvent } from "@fosscord/util"; import ws from "ws"; import { Connection } from "./events/Connection"; import http from "http"; @@ -50,7 +50,6 @@ export class Server { await initDatabase(); await Config.init(); await initEvent(); - await BannedWords.init(); if (!this.server.listening) { this.server.listen(this.port); console.log(`[Gateway] online on 0.0.0.0:${this.port}`); -- cgit 1.5.1