diff --git a/src/commands/collection.ts b/src/commands/collection.ts index 833c79c..c69ef9f 100644 --- a/src/commands/collection.ts +++ b/src/commands/collection.ts @@ -2,6 +2,7 @@ import { Collection } from "@discordjs/collection"; import { PingCommand } from "./impl/ping.js"; import { PositionCommand } from "./impl/position.js"; import { SongCommand } from "./impl/song.js"; +import { StandCommand } from "./impl/stand.js"; import { TempCommand } from "./impl/temp.js"; import { VanishCommand } from "./impl/vanish.js"; import { VolumeCommand } from "./impl/volume.js"; @@ -18,6 +19,7 @@ cmds.push(new PositionCommand()); cmds.push(new TempCommand()); cmds.push(new WhereCommand()); cmds.push(new VolumeCommand()); +cmds.push(new StandCommand()); for (const command of cmds) { commands.set(command.name, command); diff --git a/src/commands/impl/stand.ts b/src/commands/impl/stand.ts index 7eddcf9..cfb6ce6 100644 --- a/src/commands/impl/stand.ts +++ b/src/commands/impl/stand.ts @@ -4,7 +4,7 @@ import { logInfo, logSuccess } from "../../util/logger.js"; import { BaseCommand } from "../base-command.js"; import type { ICommandRequirements } from "../interface.ts"; -export class PositionCommand extends BaseCommand { +export class StandCommand extends BaseCommand { name = "stand"; cooldown = 60; enabled = true;