2023-03-15 14:09:09 +00:00
|
|
|
import SoundboardCommand from "../../classes/soundboardCommand.js";
|
|
|
|
|
|
|
|
class MailCommand extends SoundboardCommand {
|
|
|
|
static file = "./assets/audio/mail.ogg";
|
|
|
|
static description = "Plays the \"You've got mail\" sound effect";
|
|
|
|
static aliases = ["yougotmail", "youvegotmail", "aol"];
|
|
|
|
}
|
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export default MailCommand;
|