mirror of https://github.com/fluffle/goirc
!say
This commit is contained in:
parent
f849da89c1
commit
2583f883f9
|
@ -20,6 +20,7 @@ var commands = map [string]func(*irc.Conn, string, string, string) {
|
||||||
"remove": remove,
|
"remove": remove,
|
||||||
"topic": topic,
|
"topic": topic,
|
||||||
"appendtopic": appendtopic,
|
"appendtopic": appendtopic,
|
||||||
|
"say": csay,
|
||||||
}
|
}
|
||||||
|
|
||||||
const googleAPIKey = "ABQIAAAA6-N_jl4ETgtMf2M52JJ_WRQjQjNunkAJHIhTdFoxe8Di7fkkYhRRcys7ZxNbH3MIy_MKKcEO4-9_Ag"
|
const googleAPIKey = "ABQIAAAA6-N_jl4ETgtMf2M52JJ_WRQjQjNunkAJHIhTdFoxe8Di7fkkYhRRcys7ZxNbH3MIy_MKKcEO4-9_Ag"
|
||||||
|
@ -296,3 +297,9 @@ func appendtopic(conn *irc.Conn, nick, args, channel string) {
|
||||||
}
|
}
|
||||||
conn.Topic(channel, basetopic + args)
|
conn.Topic(channel, basetopic + args)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func csay(conn *irc.Conn, nick, args, target string) {
|
||||||
|
if isChannel(target) && hasAccess(conn, target, nick, "t") {
|
||||||
|
say(conn, target, args)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue