Fix lint for real

This commit is contained in:
Dragon Fire
2021-01-17 23:35:10 -05:00
parent 094edc5d56
commit b3649c2694
+1 -1
View File
@@ -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)