Fix that ig?
This commit is contained in:
parent
b17d35ffcb
commit
db56540805
6
index.js
6
index.js
|
@ -282,7 +282,7 @@ dcClient.on('interactionCreate', async interaction => {
|
||||||
createExtension(ext, name, uid).then((result) => {
|
createExtension(ext, name, uid).then((result) => {
|
||||||
if (result.status == "created") {
|
if (result.status == "created") {
|
||||||
interaction.editReply({
|
interaction.editReply({
|
||||||
content: "",
|
content: "✅",
|
||||||
embeds: [{
|
embeds: [{
|
||||||
"title": "Extension Created!",
|
"title": "Extension Created!",
|
||||||
"color": 0x00ff00,
|
"color": 0x00ff00,
|
||||||
|
@ -320,7 +320,7 @@ dcClient.on('interactionCreate', async interaction => {
|
||||||
if (result.status == "exists") {
|
if (result.status == "exists") {
|
||||||
// The user already has an extension, return an ephemeral message saying so
|
// The user already has an extension, return an ephemeral message saying so
|
||||||
interaction.editReply({
|
interaction.editReply({
|
||||||
content: "",
|
content: "✅",
|
||||||
embeds: [{
|
embeds: [{
|
||||||
"title": "Extension Info",
|
"title": "Extension Info",
|
||||||
"color": 0x00ff00,
|
"color": 0x00ff00,
|
||||||
|
@ -364,7 +364,7 @@ dcClient.on('interactionCreate', async interaction => {
|
||||||
extensionList1 += `${key}: ${extensionList[key]}\n`;
|
extensionList1 += `${key}: ${extensionList[key]}\n`;
|
||||||
}
|
}
|
||||||
interaction.editReply({
|
interaction.editReply({
|
||||||
content: "",
|
content: "✅",
|
||||||
embeds: [{
|
embeds: [{
|
||||||
"title": "Extension List",
|
"title": "Extension List",
|
||||||
"color": 0x00ff00,
|
"color": 0x00ff00,
|
||||||
|
|
Loading…
Reference in a new issue