0
0
Fork 0

Make the solve command work

This commit is contained in:
Oliver-Akins 2023-03-03 16:39:59 -06:00
parent c6bd62504c
commit 627a0754fc

View file

@ -99,7 +99,7 @@ const subcommands: {[index: string]: subcommand} = {
url: `/${meta.channel}/guess`, url: `/${meta.channel}/guess`,
payload: { payload: {
type: `solve`, type: `solve`,
guess: meta.args[1] guess: meta.args.slice(1).join(` `),
} }
}); });