From 41051441f6b7a6d8e20654cd7956adaf93484430 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Sat, 23 Nov 2024 01:33:38 -0600 Subject: [PATCH] Break out of loop when reply is found, removed a ton of the things teto can say --- bot.js | 31 ++++--------------------------- 1 file changed, 4 insertions(+), 27 deletions(-) diff --git a/bot.js b/bot.js index 57de75d..e69b490 100644 --- a/bot.js +++ b/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 } } }