2022-04-05 03:05:28 +00:00
|
|
|
import SoundboardCommand from "../../classes/soundboardCommand.js";
|
2022-01-24 04:40:11 +00:00
|
|
|
|
2022-04-05 03:05:28 +00:00
|
|
|
class DamnDanielCommand extends SoundboardCommand {
|
|
|
|
static file = "./assets/audio/damndaniel.ogg";
|
|
|
|
static description = "Plays the \"damn daniel\" sound effect";
|
|
|
|
static aliases = ["daniel", "damn"];
|
2022-01-24 04:40:11 +00:00
|
|
|
}
|
|
|
|
|
2022-01-26 18:34:26 +00:00
|
|
|
export default DamnDanielCommand;
|