From 8f0598275c085c4bd494cc3c8321d80a1d207bd4 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 25 Sep 2018 00:29:21 +0000 Subject: [PATCH] Fix lint --- commands/search/azur-lane-ship.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/search/azur-lane-ship.js b/commands/search/azur-lane-ship.js index 3a97aa73..d432eba5 100644 --- a/commands/search/azur-lane-ship.js +++ b/commands/search/azur-lane-ship.js @@ -53,7 +53,8 @@ module.exports = class AzurLaneShipCommand extends Command { ${body.equipment[1].equippable} (${body.equipment[1].efficiency}) ${body.equipment[2].equippable} (${body.equipment[2].efficiency}) `) - .addField('❯ Images', `[Chibi](${body.chibi}), ${body.images.map(img => `[${img.name}](${img.url})`).join(', ')}`); + .addField('❯ Images', + `[Chibi](${body.chibi}), ${body.images.map(img => `[${img.name}](${img.url})`).join(', ')}`); return msg.embed(embed); } catch (err) { if (err.status === 404) return msg.say('Could not find any results.');