diff --git a/pkg/utils/excuses.go b/pkg/utils/excuses.go index 35e7490..f0bc452 100644 --- a/pkg/utils/excuses.go +++ b/pkg/utils/excuses.go @@ -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)] }