2022-01-24 04:40:11 +00:00
|
|
|
import { play } from "../../utils/soundplayer.js";
|
|
|
|
import MusicCommand from "../../classes/musicCommand.js";
|
|
|
|
|
|
|
|
class DamnDanielCommand extends MusicCommand {
|
|
|
|
async run() {
|
|
|
|
return await play(this.client, "./assets/audio/damndaniel.ogg", this.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
static description = "Plays the \"damn daniel\" sound effect";
|
2022-01-26 18:34:26 +00:00
|
|
|
static aliases = ["daniel", "damn"];
|
2022-01-24 04:40:11 +00:00
|
|
|
}
|
|
|
|
|
2022-01-26 18:34:26 +00:00
|
|
|
export default DamnDanielCommand;
|