send image urls

This commit is contained in:
jjanzen 2025-01-17 00:14:10 -06:00
parent b4f1a11774
commit 4035f68fb6

View file

@ -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",
});
}