mrmBot-Matrix/commands/soundboard/bruh.js

9 lines
282 B
JavaScript
Raw Normal View History

2023-03-15 14:09:09 +00:00
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;