aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--command_impls.js10
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",
+ });
}