From b2de7200f0a07d5bc933c2d4f9d0ff0df1945d5e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 7 Apr 2024 01:37:34 -0400 Subject: [PATCH] Fix --- commands/search/magic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/magic.js b/commands/search/magic.js index 37d35a60..87d5e1c5 100644 --- a/commands/search/magic.js +++ b/commands/search/magic.js @@ -83,7 +83,7 @@ module.exports = class MagicCommand extends Command { const isFunny = funny.includes(query); const { body } = await request .get('https://api.scryfall.com/cards/search') - .query({ q: `${query}${isFunny ? ' is:funny' : ''}` }); + .query({ q: `${query} game:paper ${isFunny ? ' is:funny' : ''}` }); return body.data[0]; } catch (err) { if (err.status === 404) return null;