diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-03-11 17:11:48 -0700 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-03-11 17:11:48 -0700 |
commit | 92ab1b1c850f5e386737e7af048d6a1ed4a05a25 (patch) | |
tree | 5348a6dace9db5668f34d9a4c835b299498cce79 /twitch-bot | |
parent | 54037847b6a81c3a44ed433e7c4219115c1b4245 (diff) | |
download | lset-92ab1b1c850f5e386737e7af048d6a1ed4a05a25.tar lset-92ab1b1c850f5e386737e7af048d6a1ed4a05a25.tar.gz lset-92ab1b1c850f5e386737e7af048d6a1ed4a05a25.tar.bz2 |
fixed mismatch issue
Diffstat (limited to 'twitch-bot')
-rw-r--r-- | twitch-bot/bot.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/twitch-bot/bot.js b/twitch-bot/bot.js index b81830c..cdc9780 100644 --- a/twitch-bot/bot.js +++ b/twitch-bot/bot.js @@ -11,7 +11,7 @@ fs.readFile('./settings.json', 'utf8', (err, data) => { // parse JSON string to JSON object const settings = JSON.parse(data); } -} +}); fs.readFile('./reacts.json', 'utf8', (err, data) => { if (err) { @@ -21,7 +21,7 @@ fs.readFile('./reacts.json', 'utf8', (err, data) => { // parse JSON string to JSON object const reacts = JSON.parse(data); } -} +}); fs.readFile('./commands.json', 'utf8', (err, data) => { if (err) { @@ -31,7 +31,7 @@ fs.readFile('./commands.json', 'utf8', (err, data) => { // parse JSON string to JSON object const commands = JSON.parse(data); } -} +}); fs.readFile('./mod_commands.json', 'utf8', (err, data) => { if (err) { @@ -41,7 +41,7 @@ fs.readFile('./mod_commands.json', 'utf8', (err, data) => { // parse JSON string to JSON object const mod_commands = JSON.parse(data); } -} +}); const opts = { identity: { |