mrmBot-Matrix/commands/soundboard/fbi.js

9 lines
289 B
JavaScript
Raw Normal View History

2023-03-15 14:09:09 +00:00
import SoundboardCommand from "../../classes/soundboardCommand.js";
class FBICommand extends SoundboardCommand {
static file = "./assets/audio/fbi.ogg";
static description = "Plays the \"FBI OPEN UP\" sound effect";
static aliases = ["openup"];
}
export default FBICommand;