diff --git a/assets/audio/damndaniel.ogg b/assets/audio/damndaniel.ogg new file mode 100644 index 0000000..37b898c Binary files /dev/null and b/assets/audio/damndaniel.ogg differ diff --git a/commands/soundboard/damndaniel.js b/commands/soundboard/damndaniel.js new file mode 100644 index 0000000..4dd1ddf --- /dev/null +++ b/commands/soundboard/damndaniel.js @@ -0,0 +1,13 @@ +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"; + static aliases = ["daniel"]; +} + +export default DamnDanielCommand; \ No newline at end of file