diff --git a/cmd/nourybot/commands.go b/cmd/nourybot/commands.go index f8384c1..fe82428 100644 --- a/cmd/nourybot/commands.go +++ b/cmd/nourybot/commands.go @@ -380,6 +380,11 @@ func (app *application) handleCommand(message twitch.PrivateMessage) { // 1000 User Level // Admin //------------------------------------ + case "say": + if userLevel >= 1000 { + reply = message.Message[6:len(message.Message)] + } + case "join": if userLevel >= 1000 { go app.AddChannel(cmdParams[1], message)