diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-17 12:18:41 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-17 12:18:41 -0600 |
commit | f0eb74dcfa687c6816dfb0a95f7cc38cfdad6cf1 (patch) | |
tree | 7178a58ab58b5ab250671d23de4ad92a902e461c /command_impls.js | |
parent | 4035f68fb6bed64b89005b42f4ee527d9df1911a (diff) |
fact checking boar now uses advanced ai algorithms
Diffstat (limited to 'command_impls.js')
-rw-r--r-- | command_impls.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/command_impls.js b/command_impls.js index 5875e66..b95e472 100644 --- a/command_impls.js +++ b/command_impls.js @@ -75,7 +75,8 @@ export function fomx(state) { }); } -export function factcheck(state, truth) { +export function factcheck(state) { + const truth = Math.random() > 0.5 ? true : false; if (truth) return send(state, { content: "https://jjanzen.ca/images/true-boar.png", |