add word "nan"
This commit is contained in:
parent
c638a6b5df
commit
06a8cf3840
2 changed files with 5 additions and 2 deletions
|
@ -6,6 +6,7 @@ Bot qui envoie automatiquement des réponses ennuyante quand les personnes que t
|
|||
quoi | feur (ou équivalent)
|
||||
oui | stiti (ou équivalent)
|
||||
non | bril (ou équivalent)
|
||||
nan | cy (ou équivalent)
|
||||
|
||||
N'hésitez pas à ouvrir un ticket ou faire une merge request pour ajouter des mots/réponses.
|
||||
|
||||
|
|
6
main.py
6
main.py
|
@ -133,7 +133,8 @@ if __name__ == '__main__':
|
|||
base = {
|
||||
"quoi": ["quoi", "koi", "quoient", "q u o i"],
|
||||
"oui": ["oui", "ui"],
|
||||
"non": ["non", "nn"]
|
||||
"non": ["non", "nn"],
|
||||
"nan": ["nan"]
|
||||
}
|
||||
universalBase = createBaseTrigger(list(base.values()))
|
||||
|
||||
|
@ -148,7 +149,8 @@ if __name__ == '__main__':
|
|||
"https://twitter.com/antoinelae/status/1422943594403581957/video/1"
|
||||
],
|
||||
"oui": createBaseAnswers("stiti"),
|
||||
"non": createBaseAnswers("bril")
|
||||
"non": createBaseAnswers("bril"),
|
||||
"nan": createBaseAnswers("cy")
|
||||
}
|
||||
|
||||
# loading environment variables and launching the bot
|
||||
|
|
Reference in a new issue