diff --git a/dot-commands/metar.js b/dot-commands/metar.js index 33207e9..b5333e3 100644 --- a/dot-commands/metar.js +++ b/dot-commands/metar.js @@ -10,6 +10,10 @@ module.exports = { // Also checks for validity of ICAOs const icaoList = fn.avWx.parseICAOs(commandData); const metarData = await fn.avWx.metar.getData(icaoList); + if (metarData.length === 0) { + message.reply('No METAR data found for the provided ICAOs.'); + return; + } const messages = fn.avWx.metar.parseData(metarData); messages.forEach(messagePayload => { message.reply(messagePayload);