stand impl part 2

This commit is contained in:
Darius
2025-11-16 20:20:08 +01:00
parent ade7ae722d
commit 9a170d6f21
2 changed files with 3 additions and 1 deletions

View File

@@ -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);