|
|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
package bot
|
|
|
|
|
package utils
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"math/rand"
|
|
|
|
|
@ -532,8 +532,8 @@ var BOFHExcuses []string = []string{
|
|
|
|
|
"Your machine had the fuses in backwards.",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// getExcuse gets a random excuse from a list of excuses and writes it out
|
|
|
|
|
func getBOFHExcuse() string {
|
|
|
|
|
// GetBOFHExcuse gets a random excuse from a list of excuses and writes it out
|
|
|
|
|
func GetBOFHExcuse() string {
|
|
|
|
|
return BOFHExcuses[randIdx(len(BOFHExcuses)-1)]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|