very minor things, added disguise, code reorganizaiton

This commit is contained in:
Master Kwoth
2016-03-08 22:42:43 +01:00
parent 1bc681e1aa
commit aa62ac21a2
10 changed files with 138 additions and 66 deletions

View File

@ -8,11 +8,10 @@ namespace NadekoBot.Classes.Trivia {
public class TriviaQuestion {
//represents the min size to judge levDistance with
private static readonly HashSet<Tuple<int, int>> strictness = new HashSet<Tuple<int, int>> {
new Tuple<int, int>(6, 0),
new Tuple<int, int>(7, 1),
new Tuple<int, int>(12, 2),
new Tuple<int, int>(17, 3),
new Tuple<int, int>(22, 4),
new Tuple<int, int>(9, 0),
new Tuple<int, int>(14, 1),
new Tuple<int, int>(19, 2),
new Tuple<int, int>(22, 3),
};
public static int maxStringLength = 22;