Merge branch 'master' of https://github.com/Tetracyl/esmBot
This commit is contained in:
commit
6eeec78ac2
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