Add damn daniel command and ogg file
This commit is contained in:
parent
92926e04a2
commit
bbfbbd6e08
2 changed files with 13 additions and 0 deletions
BIN
assets/audio/damndaniel.ogg
Normal file
BIN
assets/audio/damndaniel.ogg
Normal file
Binary file not shown.
13
commands/soundboard/damndaniel.js
Normal file
13
commands/soundboard/damndaniel.js
Normal 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;
|
Loading…
Reference in a new issue