diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-17 00:14:10 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-17 00:14:10 -0600 |
commit | 4035f68fb6bed64b89005b42f4ee527d9df1911a (patch) | |
tree | 8440b6ce56b614cf1ce735700ebbeee7ed9e84fa /command_impls.js | |
parent | b4f1a117741206b6971d78d534ae7de51f800161 (diff) |
send image urls
Diffstat (limited to 'command_impls.js')
-rw-r--r-- | command_impls.js | 10 |
1 files changed, 8 insertions, 2 deletions
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", + }); } |