send image urls
This commit is contained in:
parent
b4f1a11774
commit
4035f68fb6
1 changed files with 8 additions and 2 deletions
|
@ -76,6 +76,12 @@ export function fomx(state) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function factcheck(state, truth) {
|
export function factcheck(state, truth) {
|
||||||
if (truth) return send(state, { content: "true" });
|
if (truth)
|
||||||
else return send(state, { content: "false" });
|
return send(state, {
|
||||||
|
content: "https://jjanzen.ca/images/true-boar.png",
|
||||||
|
});
|
||||||
|
else
|
||||||
|
return send(state, {
|
||||||
|
content: "https://jjanzen.ca/images/false-boar.png",
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue