From 6b5df2f8736f798f27f078ccc43d982eda3629b1 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 16 May 2019 14:31:10 +0000 Subject: [PATCH] Fix --- commands/search/define.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/define.js b/commands/search/define.js index 7724246c..3a0cb9db 100644 --- a/commands/search/define.js +++ b/commands/search/define.js @@ -36,7 +36,7 @@ module.exports = class DefineCommand extends Command { if (!body.length) return msg.say('Could not find any results.'); const data = body[0]; return msg.say(stripIndents` - **${data.stems[0]}** (${data.fl}) + **${data.meta.stems[0]}** (${data.fl}) ${data.shortdef.map((definition, i) => `(${i + 1}) ${definition}`).join('\n')} `); } catch (err) {