2023-03-15 14:09:09 +00:00
|
|
|
import SoundboardCommand from "../../classes/soundboardCommand.js";
|
|
|
|
|
|
|
|
class BoiCommand extends SoundboardCommand {
|
|
|
|
static file = "./assets/audio/boi.ogg";
|
|
|
|
static description = "Plays the \"boi\" sound effect";
|
|
|
|
static aliases = ["boy", "neutron", "hugh"];
|
|
|
|
}
|
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export default BoiCommand;
|