diff --git a/src/bot.ts b/src/bot.ts index 32e5518..b726db3 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -15,5 +15,9 @@ async function main() { else await getLocalImage(conf) } +if (Number(process.versions.node.split('.')[0]) < 16) { + console.error("Please upgrade to node 16. NO GUARENTEES!") +} + // Run the main function, obviously. main()