Julia 6 лет назад
Родитель
Сommit
d877481cc5
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      quizz.js

+ 4 - 0
quizz.js

@@ -382,6 +382,10 @@ QuizzBot.prototype.onMessageInternal = function(username, user, msg) {
         else
         else
             this.bot.sendMsg(this.room, "Must be channel operator");
             this.bot.sendMsg(this.room, "Must be channel operator");
     }
     }
+    else if (lmsg.startsWith("!repete")) {
+        if (this.currentQuestion)
+            this.bot.sendMsg(this.room, `#${this.currentQuestion.id} ${this.currentQuestion.question}`);
+    }
     else if (lmsg.startsWith("!help")) {
     else if (lmsg.startsWith("!help")) {
         this.bot.sendMsg(this.room, "Besoin d'aide ? La liste des commandes utiles est sur ce site : https://git.knacki.info/irc.knacki.info/ircbot-quizz/src/master/quizz.md");
         this.bot.sendMsg(this.room, "Besoin d'aide ? La liste des commandes utiles est sur ce site : https://git.knacki.info/irc.knacki.info/ircbot-quizz/src/master/quizz.md");
     }
     }