From 6f91134756f175ea313e4e1b0ce43adad6589979 Mon Sep 17 00:00:00 2001 From: Ethan Lane Date: Fri, 18 Oct 2024 18:04:49 +0100 Subject: [PATCH] Add to registry --- src/registry.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/registry.ts b/src/registry.ts index d3a73a7..a2d7391 100644 --- a/src/registry.ts +++ b/src/registry.ts @@ -12,6 +12,7 @@ import Config from "./commands/config"; import Disable from "./commands/disable"; import Ignore from "./commands/ignore"; import Kick from "./commands/kick"; +import Linkonly from "./commands/linkonly"; import Mute from "./commands/mute"; import Poll from "./commands/poll"; import Role from "./commands/Role/role"; @@ -52,6 +53,7 @@ export default class Registry { CoreClient.RegisterCommand("disable", new Disable()); CoreClient.RegisterCommand("ignore", new Ignore()); CoreClient.RegisterCommand("kick", new Kick()); + CoreClient.RegisterCommand("linkonly", new Linkonly()); CoreClient.RegisterCommand("mute", new Mute()); CoreClient.RegisterCommand("poll", new Poll()); CoreClient.RegisterCommand("rules", new Rules());