From a261733f21bdba7c0098de6e4ccf5d27255eba9c Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Sun, 19 May 2024 23:54:36 -0600 Subject: [PATCH] Yeah no, no overlays on alert map --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index e4e7b28..ffc3831 100644 --- a/index.js +++ b/index.js @@ -1085,7 +1085,7 @@ discord.on("interactionCreate", async (interaction) => { }); break; case "alertmap": - url = "https://www.spc.noaa.gov/products/wwa/wwa_new.gif" + url = "https://forecast.weather.gov/wwamap/png/US.png" await interaction.deferReply(); fetch(url).then((res) => { if (res.status !== 200) { @@ -1103,7 +1103,7 @@ discord.on("interactionCreate", async (interaction) => { }], files: [{ attachment: buffer, - name: `alerts}.png` + name: `alerts.png` }] }); });