fixing bugs and enhancement
This commit is contained in:
parent
70c7a1f6f4
commit
b247b0405e
1 changed files with 5 additions and 6 deletions
|
@ -1,5 +1,4 @@
|
||||||
const { MessageEmbed } = require("discord.js");
|
const { MessageEmbed } = require("discord.js");
|
||||||
const { CODMClient } = require("cath");
|
|
||||||
const moment = require("moment");
|
const moment = require("moment");
|
||||||
const axios = require("axios");
|
const axios = require("axios");
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
@ -653,16 +652,16 @@ module.exports = {
|
||||||
const data = await axios
|
const data = await axios
|
||||||
.get(
|
.get(
|
||||||
`${process.env.api}/api/v1/codm/builds?cwts=${cwts}&cc=${cc}&tag=${tag}`,
|
`${process.env.api}/api/v1/codm/builds?cwts=${cwts}&cc=${cc}&tag=${tag}`,
|
||||||
{ //Use the new auth methord
|
{
|
||||||
headers: {
|
headers: {
|
||||||
Authorization: "Gae",
|
Authorization: process.env.CODM_API_KEY,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.then(res => res.data)
|
.then(res => res.data)
|
||||||
.catch(e => null);
|
.catch(e => null);
|
||||||
|
|
||||||
if (!data?.ID) { //x what does ?. do
|
if (!data?.ID) {
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
.setDescription(
|
.setDescription(
|
||||||
`<:nyx_not_available:897378400031879188> We don't have a ${all[tag]} **${allguns[gun]}** gunsmith build by **${all[cc]}**, Please try another tag or a differnt content creator`
|
`<:nyx_not_available:897378400031879188> We don't have a ${all[tag]} **${allguns[gun]}** gunsmith build by **${all[cc]}**, Please try another tag or a differnt content creator`
|
||||||
|
@ -676,7 +675,7 @@ module.exports = {
|
||||||
});
|
});
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
.setTitle(
|
.setTitle(
|
||||||
`${all[tag]} for ${data.weaponName} from ${data.author}`
|
`${all[tag]} build for ${data.weaponName} from ${data.author}`
|
||||||
)
|
)
|
||||||
.setDescription(
|
.setDescription(
|
||||||
`<:nyx_description:897379659665264650> **Description** \`\`\` \n${data.notes} \n\`\`\``
|
`<:nyx_description:897379659665264650> **Description** \`\`\` \n${data.notes} \n\`\`\``
|
||||||
|
@ -721,4 +720,4 @@ module.exports = {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue