From 73202911d95918bfbd7df452ef5aac7fb255e663 Mon Sep 17 00:00:00 2001 From: "chris062689@gmail.com" Date: Mon, 21 Jan 2019 22:31:26 -0500 Subject: [PATCH] Removed unused fields from game command. --- src/commands/game.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/commands/game.js b/src/commands/game.js index 2172a1b..70f8ff2 100644 --- a/src/commands/game.js +++ b/src/commands/game.js @@ -48,7 +48,7 @@ exports.command = async function (message) { try { await state.gameDBPromise; } catch (e) { - message.channel.send("Game compatibility feed temporarily unavailable - sorry!"); + message.channel.send("Game compatibility feed temporarily unavailable."); throw e; } finally { // We don't need this message anymore @@ -82,11 +82,9 @@ exports.command = async function (message) { const embed = new discord.RichEmbed() .addField("Status", compat.name, true) - .addField("Needs System Files", bestGame.needs_system_files ? "Yes" : "No", true) - .addField("Needs Shared Font", bestGame.needs_shared_font ? "Yes" : "No", true) .setTitle(bestGame.title) .setColor(compat.color) - .setDescription(bestGame.description) + .setDescription(compat.description) .setURL(url) .setThumbnail(screenshot);