Rename the exported member
This commit is contained in:
parent
1f21f63ada
commit
5f356f3376
1 changed files with 5 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ export function reset_users() {
|
|||
export var question_index = -1;
|
||||
export var user_answers = {};
|
||||
export var user_right_count = {};
|
||||
export const correct_answers = config.quiz.answers;
|
||||
export const questions = config.quiz.answers;
|
||||
|
||||
|
||||
export var commands = {};
|
||||
|
|
@ -59,6 +59,10 @@ client.on(`connected`, () => {
|
|||
log.info(`Connected to Twitch`);
|
||||
});
|
||||
|
||||
client.on(`message`, (channel, ctx, msg, self) => {
|
||||
console.log(msg);
|
||||
});
|
||||
|
||||
client.on(`chat`, (channel, ctx, msg, self) => {
|
||||
|
||||
if (self) return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue