added unbonk

This commit is contained in:
Helixu 2021-12-21 17:10:45 +01:00
parent a5515493b8
commit fc4767bcc1
1 changed files with 15 additions and 1 deletions

View File

@ -134,6 +134,18 @@ client.on("ready", () => {
}
]
},
{
name: "unbonk",
description: "bonk'nt someone",
options: [
{
name: "user",
description: "Whomst to unbonk",
type: 6,
required: true
}
]
},
{
name: "cat",
description: "Meow"
@ -248,6 +260,8 @@ client.on("interactionCreate", (int) => {
});
} else if(int.commandName == "bonk"){
int.reply(`*${int.user.username} bonked ${int.options.getUser("user").username}* <a:getbonked:912473583488499743>`);
} else if(int.commandName == "unbonk"){
int.reply(`*${int.user.username} unbonked ${int.options.getUser("user").username}*`);
} else if(int.commandName == "cat"){
const row = new dc.MessageActionRow();
const btn = new dc.MessageButton();
@ -341,4 +355,4 @@ client.on("interactionCreate", (int) => {
process.on("exit", (code) => {
console.log("Exiting with code", code);
client.destroy();
});
});