From 9e8a020ed415db149fd34b35a9095aa83cbc4457 Mon Sep 17 00:00:00 2001 From: Robert Long <robert@robertlong.me> Date: Thu, 10 May 2018 16:49:57 -0700 Subject: [PATCH] Add allow_multi parameter --- scripts/bot/run-bot.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/bot/run-bot.js b/scripts/bot/run-bot.js index 07f02eb5a..fe3f16b40 100755 --- a/scripts/bot/run-bot.js +++ b/scripts/bot/run-bot.js @@ -30,7 +30,8 @@ async function spawnBot(id) { const params = { room: options["--room"], bot: true, - name: `Bot ${id}` + name: `Bot ${id}`, + allow_multi: true }; const url = `https://${options["--host"]}/hub.html?${querystring.stringify(params)}`; -- GitLab