Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/8ball.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down