--- trunk/extensions/neko/src/index.ts 2024/08/25 17:37:58 611 +++ trunk/extensions/neko/src/index.ts 2024/09/07 09:38:45 626 @@ -4,11 +4,10 @@ import Application from "../../../build/out/framework/typescript/app/Application"; import { Command } from "../../../build/out/framework/typescript/commands/Command"; import { Class } from "../../../build/out/framework/typescript/types/Utils"; -import AnimeCommand from "./commands/AnimeCommand"; import NekoCommand from "./commands/NekoCommand"; export default class Neko extends Extension { protected commands(): Awaitable[]> { - return [AnimeCommand, NekoCommand]; + return [NekoCommand]; } }