Break out of loop when reply is found, removed a ton of the things teto can say
This commit is contained in:
parent
b884e89852
commit
41051441f6
1 changed files with 4 additions and 27 deletions
31
bot.js
31
bot.js
|
@ -2,7 +2,7 @@ var responses = [
|
|||
{
|
||||
"type": "random",
|
||||
"keywords": [
|
||||
["love", "cool"],
|
||||
["love"],
|
||||
["teto"]
|
||||
],
|
||||
"replies": [
|
||||
|
@ -14,7 +14,7 @@ var responses = [
|
|||
"type": "random",
|
||||
"keywords": [
|
||||
["teto"],
|
||||
["hate", "fuck", "despise", "kill", "die"]
|
||||
["hate", "despise", "die"]
|
||||
],
|
||||
"replies": [
|
||||
"D:",
|
||||
|
@ -34,8 +34,7 @@ var responses = [
|
|||
["sorry", "my bad", "apologies", "forgive"]
|
||||
],
|
||||
"replies": [
|
||||
"None is forgiven. You will all pay for your sins one day.",
|
||||
"I'll think about it."
|
||||
"None is forgiven. You will all pay for your sins one day."
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -81,29 +80,6 @@ var responses = [
|
|||
"Die in a fire."
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "random",
|
||||
"keywords": [
|
||||
["teto"],
|
||||
["why"]
|
||||
],
|
||||
"replies": [
|
||||
"Because!",
|
||||
"Because I'm the adult here AND THAT'S FINAL!!! >:(",
|
||||
"You'll understand when your older!!"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "random",
|
||||
"keywords": [
|
||||
["teto"],
|
||||
["feel", "thoughts", "how", "opinion"],
|
||||
["miku", "hatsune"]
|
||||
],
|
||||
"replies": [
|
||||
"Hatsune who? I don't know who your talking about, I guess you could say she wasn't TOO MESMERIZABLE!!!"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "random",
|
||||
"keywords": [
|
||||
|
@ -145,6 +121,7 @@ module.exports = {
|
|||
reply = reply(message)
|
||||
}
|
||||
message.reply(reply)
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue