diff --git a/src/tg/init.deno.ts b/src/tg/init.deno.ts index 4ead4e2..4a0b6f2 100644 --- a/src/tg/init.deno.ts +++ b/src/tg/init.deno.ts @@ -277,5 +277,17 @@ export async function init() { }); }); + Deno.cron("Oh no Here comes one now", "0 19 * * *", () => { + if (previousMorningSticker && !previousMorningSticker.has_reaction) { + tgCall( + { + photo: `https://${DOMAIN}/gonnagetcha.jpg?q=${bootId}`, + chat_id: MAIN_CHAT_ID, + }, + "sendPhoto", + ); + } + }); + postGeohash(); } diff --git a/static/gonnagetcha.jpg b/static/gonnagetcha.jpg new file mode 100644 index 0000000..c243e2a Binary files /dev/null and b/static/gonnagetcha.jpg differ