ratz/src/modules/timeofday/timeofday.go

var midnight

var postmidnight

var morning

var midmorning

var noontime

var afternoon

var evening

var nighttime

func noOrders(srv common.ChatServer) {}

func TimeOfDayCommentary(srv common.ChatServer) {}

// fuzzyDelay sleeps for a random amount of time within the given duration
func fuzzyDelay(window time.Duration) {}

// 3am
func postMidnightComment(srv common.ChatServer) {}

// 6am
func morningComment(srv common.ChatServer) {}

// 9am
func midmorningComment(srv common.ChatServer) {}

// 12pm
func noonComment(srv common.ChatServer) {}

// 3pm
func afternoonComment(srv common.ChatServer) {}

// 6 pm
func eveningComment(srv common.ChatServer) {}

// 9pm
func nighttimeComment(srv common.ChatServer) {}

// 12am
func midnightComment(srv common.ChatServer) {}

func CommentOnTimeOfDay() {}

func sendTimeOfDayComment(srv common.ChatServer, audiofile string, todmsg msgconstruction.RandomResponse) {}

// return X percent of Int
func getPercentOf(percent int, Of int) int {}