diff --git a/index.js b/index.js index c8aa6d3..37bd77b 100644 --- a/index.js +++ b/index.js @@ -36,7 +36,7 @@ client.on("room.message", (roomId, event) => { if (!(messageCounters.get(roomId) % config.frequency) || messageArray[0].toLowerCase() === "speak") { console.log("Generating message..."); - const options = { args: ["", ""] }; + const options = { args: [""] }; PythonShell.run(pyFile, options, (err, message) => { if (err) throw err; client.sendText(roomId, message.toString());