Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
loljoho committed Mar 2, 2019
1 parent 3083b88 commit df53680
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,9 +519,10 @@ def nextQuestion(self):
# Update DB with new round number
self.storage.updateGame(self.channel, self.numAsked)

# Retrieve new question from DB
# Retrieve KAOS question from DB
if self.numAsked % self.registryValue('kaos.frequencyKAOS') == 0:
retrievedQuestion = self.retrieveQuestion(True)
# Retrieve new regular question from DB
else:
retrievedQuestion = self.retrieveQuestion(False)
self.questionID = retrievedQuestion['id']
Expand Down

0 comments on commit df53680

Please sign in to comment.