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