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;