From 5af0c2f07aeabdde4d03c17b9a84b222798fd576 Mon Sep 17 00:00:00 2001 From: Andreas Neue Date: Fri, 1 Apr 2016 19:26:57 +0200 Subject: [PATCH] modules/quiz: medium -> normal --- modules/quiz.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/quiz.go b/modules/quiz.go index 955ecac..3c37e70 100644 --- a/modules/quiz.go +++ b/modules/quiz.go @@ -25,7 +25,7 @@ var ( quizCtrlCh = make(chan string, 1024) quizAnswerCh = make(chan *irc.Message, 1024) quizQuestions []quizQuestion - quizQuestionValues = map[string]int{"extreme": 5, "hard": 4, "medium": 3, "easy": 2, "baby": 1} + quizQuestionValues = map[string]int{"extreme": 5, "hard": 4, "normal": 3, "easy": 2, "baby": 1} ) func init() { @@ -207,7 +207,7 @@ func quizLoadQuestions(path string) []quizQuestion { if len(line) == 0 || line[0] == '#' || line[0] == '\n' { if q.category != "" { questions = append(questions, q) - q = quizQuestion{"", "", "", "", "medium"} + q = quizQuestion{"", "", "", "", "normal"} } } else { tok := strings.Split(line, ":: ")