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

9 lines
No EOL
282 B
JavaScript

import SoundboardCommand from "../../classes/soundboardCommand.js";
class BruhCommand extends SoundboardCommand {
static file = "./assets/audio/bruh.ogg";
static description = "Plays the \"bruh\" sound effect";
static aliases = ["bro"];
}
export default BruhCommand;