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