Forgot to actually call the function

This commit is contained in:
Hamcha 2016-02-09 10:51:04 +00:00
parent 8269e40ff3
commit 9f54924598

View file

@ -24,12 +24,10 @@ var objects []string = []string{
} }
func metafora(broker *tg.Broker, update tg.APIMessage) { func metafora(broker *tg.Broker, update tg.APIMessage) {
if update.Text != nil { if isCommand(update, "metafora") {
if *(update.Text) == "/metafora" { n := rand.Intn(len(actions))
n := rand.Intn(len(actions)) m := rand.Intn(len(objects))
m := rand.Intn(len(objects)) broker.SendTextMessage(update.Chat, actions[n]+" "+objects[m], nil)
broker.SendTextMessage(update.Chat, actions[n]+" "+objects[m], nil) return
return
}
} }
} }