mrmBot-Matrix/commands/soundboard/boi.js
2023-03-15 10:09:09 -04:00

9 lines
297 B
JavaScript

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"];
}
export default BoiCommand;