From 4035f68fb6bed64b89005b42f4ee527d9df1911a Mon Sep 17 00:00:00 2001 From: jjanzen Date: Fri, 17 Jan 2025 00:14:10 -0600 Subject: send image urls --- command_impls.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'command_impls.js') diff --git a/command_impls.js b/command_impls.js index ed088e3..5875e66 100644 --- a/command_impls.js +++ b/command_impls.js @@ -76,6 +76,12 @@ export function fomx(state) { } export function factcheck(state, truth) { - if (truth) return send(state, { content: "true" }); - else return send(state, { content: "false" }); + if (truth) + return send(state, { + content: "https://jjanzen.ca/images/true-boar.png", + }); + else + return send(state, { + content: "https://jjanzen.ca/images/false-boar.png", + }); } -- cgit v1.2.3