Add damn daniel command and ogg file

This commit is contained in:
Seif 2022-01-23 20:40:11 -08:00
parent 92926e04a2
commit bbfbbd6e08
2 changed files with 13 additions and 0 deletions

BIN
assets/audio/damndaniel.ogg Normal file

Binary file not shown.

View File

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