This commit is contained in:
Essem 2022-01-26 12:22:41 -06:00
commit 6eeec78ac2
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
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;