From 50574a164f556e440fb6ffd434fe09c4e0ef0015 Mon Sep 17 00:00:00 2001 From: Tippi Fifestarr <62179036+tippi-fifestarr@users.noreply.github.com> Date: Fri, 7 Jan 2022 11:20:13 -0600 Subject: [PATCH] Gaslit a classic 8Ball resp Added a missing and important standard 8ball response --- plugins/8ball.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/8ball.go b/plugins/8ball.go index d6bf42b..a5c24d3 100644 --- a/plugins/8ball.go +++ b/plugins/8ball.go @@ -34,7 +34,7 @@ func eightball(msg onelib.Message, sender onelib.Sender) { "You may rely on it", "Reply hazy, try again", "Ask again later", "Better not tell you now", "Cannot predict now", "Concentrate and ask again", "Don't count on it", "My reply is no", "My sources say no", "Outlook not so good", - "Very doubtful"} + "Very doubtful", "Never ask that again"} randn := rand.Intn(len(eightballAnswers)) text = eightballAnswers[randn] + "." formattedText = text