Further updates to match new data source .strain

This commit is contained in:
Skylar Grant 2022-12-02 00:37:58 -05:00
parent 42f0fc8913
commit 9857406edd
1 changed files with 9 additions and 3 deletions

View File

@ -327,9 +327,14 @@ const functions = {
value: `${strainInfo.flavor}`, value: `${strainInfo.flavor}`,
inline: true, inline: true,
}, },
{
name: 'Rating',
value: `${strainInfo.rating}⭐️`,
inline: true,
},
{ {
name: 'Description', name: 'Description',
value: `${strainInfo.ailments}`, value: `${strainInfo.description}`,
inline: false, inline: false,
}, },
]); ]);
@ -439,7 +444,7 @@ const functions = {
}, },
strain(commandData, message) { strain(commandData, message) {
const { strainName } = commandData; const { strainName } = commandData;
const query = `SELECT id, name, type, effects, ailment, flavor FROM strains WHERE name = ${db.escape(strainName)}`; const query = `SELECT id, name, type, effects, description, flavor, rating FROM strains WHERE name = ${db.escape(strainName)}`;
db.query(query, (err, rows, fields) => { db.query(query, (err, rows, fields) => {
if (rows != undefined) { if (rows != undefined) {
commandData.strainInfo = { commandData.strainInfo = {
@ -447,8 +452,9 @@ const functions = {
name: `${rows[0].name}`, name: `${rows[0].name}`,
type: `${rows[0].type}`, type: `${rows[0].type}`,
effects: `${rows[0].effects}`, effects: `${rows[0].effects}`,
ailments: `${rows[0].ailment}`, description: `${rows[0].description}`,
flavor: `${rows[0].flavor}`, flavor: `${rows[0].flavor}`,
rating: `${rows[0].rating}`,
}; };
functions.embeds.strain(commandData, message); functions.embeds.strain(commandData, message);
} }