2023-03-15 14:09:09 +00:00
|
|
|
import SoundboardCommand from "../../classes/soundboardCommand.js";
|
|
|
|
|
|
|
|
class FakePingCommand extends SoundboardCommand {
|
|
|
|
static file = "./assets/audio/ping.ogg";
|
|
|
|
static description = "Plays a Discord ping sound effect";
|
|
|
|
static aliases = ["notification", "notif"];
|
|
|
|
}
|
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export default FakePingCommand;
|