From b3649c269444c32695248fc8947af03323df9fe8 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 17 Jan 2021 23:35:10 -0500 Subject: [PATCH] Fix lint for real --- commands/search/country.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/country.js b/commands/search/country.js index 19bd31d9..f9f5cad2 100644 --- a/commands/search/country.js +++ b/commands/search/country.js @@ -37,7 +37,7 @@ module.exports = class CountryCommand extends Command { || country.altSpellings.some(alt => alt.toLowerCase() === search) || country.alpha2Code.toLowerCase() === search || country.alpha3Code.toLowerCase() === search - || country.nativeName.toLowerCase() === search + || country.nativeName.toLowerCase() === search; }) || body[0]; const embed = new MessageEmbed() .setColor(0x00AE86)